blob: 52293e453061f9da69e0733dbc4755ecadb31988 [file] [log] [blame]
error[E0623]: lifetime mismatch
--> $DIR/ex3-both-anon-regions-one-is-struct-2.rs:14:9
|
LL | fn foo(mut x: Ref, y: &u32) {
| --- ----
| |
| these two types are declared with different lifetimes...
LL | y = x.b; //~ ERROR lifetime mismatch
| ^^^ ...but data from `x` flows into `y` here
error: aborting due to previous error
For more information about this error, try `rustc --explain E0623`.