]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lifetime-errors/ex3-both-anon-regions-one-is-struct-4.nll.stderr
More debugging for travis shutting down
[rust.git] / src / test / ui / lifetime-errors / ex3-both-anon-regions-one-is-struct-4.nll.stderr
1 warning: not reporting region error due to nll
2   --> $DIR/ex3-both-anon-regions-one-is-struct-4.rs:14:11
3    |
4 LL |     y.b = x; //~ ERROR lifetime mismatch
5    |           ^
6
7 error[E0623]: lifetime mismatch
8   --> $DIR/ex3-both-anon-regions-one-is-struct-4.rs:14:5
9    |
10 LL | fn foo(mut y: Ref, x: &u32) {
11    |               ---     ---- these two types are declared with different lifetimes...
12 LL |     y.b = x; //~ ERROR lifetime mismatch
13    |     ^^^^^^^ ...but data from `x` flows into `y` here
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0623`.