Files
rust/tests/ui/self/elision/lt-ref-self.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
978 B
Rust
Raw Normal View History

//@ run-rustfix
#![allow(non_snake_case, dead_code)]
2019-06-28 14:46:45 -04:00
use std::pin::Pin;
2024-05-07 19:45:51 +00:00
struct Struct<'a> {
data: &'a u32,
}
2019-06-28 14:46:45 -04:00
impl<'a> Struct<'a> {
// Test using `&self` sugar:
fn ref_self(&self, f: &u32) -> &u32 {
f
2022-04-01 13:13:25 -04:00
//~^ ERROR lifetime may not live long enough
2019-06-28 14:46:45 -04:00
}
// Test using `&Self` explicitly:
fn ref_Self(self: &Self, f: &u32) -> &u32 {
f
2022-04-01 13:13:25 -04:00
//~^ ERROR lifetime may not live long enough
2019-06-28 14:46:45 -04:00
}
fn box_ref_Self(self: Box<&Self>, f: &u32) -> &u32 {
f
2022-04-01 13:13:25 -04:00
//~^ ERROR lifetime may not live long enough
2019-06-28 14:46:45 -04:00
}
fn pin_ref_Self(self: Pin<&Self>, f: &u32) -> &u32 {
f
2022-04-01 13:13:25 -04:00
//~^ ERROR lifetime may not live long enough
2019-06-28 14:46:45 -04:00
}
fn box_box_ref_Self(self: Box<Box<&Self>>, f: &u32) -> &u32 {
f
2022-04-01 13:13:25 -04:00
//~^ ERROR lifetime may not live long enough
2019-06-28 14:46:45 -04:00
}
fn box_pin_Self(self: Box<Pin<&Self>>, f: &u32) -> &u32 {
f
2022-04-01 13:13:25 -04:00
//~^ ERROR lifetime may not live long enough
2019-06-28 14:46:45 -04:00
}
}
2024-05-07 19:45:51 +00:00
fn main() {}