]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lifetimes/lifetime-errors/ex1-return-one-existing-name-return-type-is-anon.nll.stderr
Change compare mode to use -Zborrowck=mir
[rust.git] / src / test / ui / lifetimes / lifetime-errors / ex1-return-one-existing-name-return-type-is-anon.nll.stderr
1 error: lifetime may not live long enough
2   --> $DIR/ex1-return-one-existing-name-return-type-is-anon.rs:8:5
3    |
4 LL |   fn foo<'a>(&self, x: &'a i32) -> &i32 {
5    |          --  - let's call the lifetime of this reference `'1`
6    |          |
7    |          lifetime `'a` defined here
8 LL | 
9 LL |     x
10    |     ^ function was supposed to return data with lifetime `'1` but it is returning data with lifetime `'a`
11
12 error: aborting due to previous error
13