blob: e505c9c0dc262d8a8808b27ee1b855c95e728f9f [file] [log] [blame]
error[E0623]: lifetime mismatch
--> $DIR/ex2b-push-no-existing-names.rs:6:12
|
LL | fn foo(x: &mut Vec<Ref<i32>>, y: Ref<i32>) {
| -------- -------- these two types are declared with different lifetimes...
LL | x.push(y);
| ^ ...but data from `y` flows into `x` here
error: aborting due to previous error
For more information about this error, try `rustc --explain E0623`.