rust/tests/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-self-is-anon.rs

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

13 lines
195 B
Rust
Raw Normal View History

2017-08-05 17:39:43 -05:00
struct Foo {
field: i32,
}
2017-08-05 17:39:43 -05:00
impl Foo {
fn foo<'a>(&self, x: &Foo) -> &Foo {
2022-05-22 01:05:15 -05:00
if true { x } else { self }
2022-04-01 12:13:25 -05:00
//~^ ERROR lifetime may not live long enough
2017-08-05 17:39:43 -05:00
}
}
fn main() {}