summaryrefslogtreecommitdiffstats
path: root/tests/ui/lifetimes/lifetime-errors/ex1-return-one-existing-name-return-type-is-anon.stderr
blob: 6fd7f67d15ea6d5129fdaad13ab5c185dacc1cff (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-return-type-is-anon.rs:8:5
   |
LL |   fn foo<'a>(&self, x: &'a i32) -> &i32 {
   |          --  - let's call the lifetime of this reference `'1`
   |          |
   |          lifetime `'a` defined here
LL |
LL |     x
   |     ^ method was supposed to return data with lifetime `'1` but it is returning data with lifetime `'a`

error: aborting due to previous error