]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lifetime-errors/ex3-both-anon-regions-return-type-is-anon.nll.stderr
More debugging for travis shutting down
[rust.git] / src / test / ui / lifetime-errors / ex3-both-anon-regions-return-type-is-anon.nll.stderr
1 warning: not reporting region error due to nll
2   --> $DIR/ex3-both-anon-regions-return-type-is-anon.rs:17:5
3    |
4 LL |     x //~ ERROR lifetime mismatch
5    |     ^
6
7 error[E0623]: lifetime mismatch
8   --> $DIR/ex3-both-anon-regions-return-type-is-anon.rs:17:5
9    |
10 LL |   fn foo<'a>(&self, x: &i32) -> &i32 {
11    |                        ----     ----
12    |                        |
13    |                        this parameter and the return type are declared with different lifetimes...
14 LL |     x //~ ERROR lifetime mismatch
15    |     ^ ...but data from `x` is returned here
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0623`.