blob: 5d4492701beb33209beab494a81da78dd657c043 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
warning: not reporting region error due to nll
--> $DIR/ex3-both-anon-regions-using-impl-items.rs:15:16
|
LL | x.push(y); //~ ERROR lifetime mismatch
| ^
error[E0623]: lifetime mismatch
--> $DIR/ex3-both-anon-regions-using-impl-items.rs:15:9
|
LL | fn foo(x: &mut Vec<&u8>, y: &u8) {
| --- --- these two types are declared with different lifetimes...
LL | x.push(y); //~ ERROR lifetime mismatch
| ^^^^^^^^^ ...but data from `y` flows into `x` here
error: aborting due to previous error
For more information about this error, try `rustc --explain E0623`.
|