summaryrefslogtreecommitdiffstats
path: root/tests/ui/lifetimes/lifetime-errors/ex1-return-one-existing-name-self-is-anon.stderr
blob: 34a64f8a63e6073558fa2f0c6705c94e20cd8319 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error: lifetime may not live long enough
  --> $DIR/ex1-return-one-existing-name-self-is-anon.rs:8:30
   |
LL |     fn foo<'a>(&self, x: &'a Foo) -> &'a Foo {
   |            --  - let's call the lifetime of this reference `'1`
   |            |
   |            lifetime `'a` defined here
LL |
LL |         if true { x } else { self }
   |                              ^^^^ associated function was supposed to return data with lifetime `'a` but it is returning data with lifetime `'1`

error: aborting due to previous error