]> git.proxmox.com Git - rustc.git/blame - src/test/ui/lifetimes/lifetime-errors/ex1-return-one-existing-name-self-is-anon.stderr
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / lifetimes / lifetime-errors / ex1-return-one-existing-name-self-is-anon.stderr
CommitLineData
923072b8 1error: lifetime may not live long enough
0731742a 2 --> $DIR/ex1-return-one-existing-name-self-is-anon.rs:8:30
041b39d2 3 |
0531ce1d 4LL | fn foo<'a>(&self, x: &'a Foo) -> &'a Foo {
923072b8
FG
5 | -- - let's call the lifetime of this reference `'1`
6 | |
7 | lifetime `'a` defined here
8LL |
532ac7d7 9LL | if true { x } else { self }
923072b8 10 | ^^^^ associated function was supposed to return data with lifetime `'a` but it is returning data with lifetime `'1`
041b39d2
XL
11
12error: aborting due to previous error
13