summary refs log tree commit diff
path: root/src/test/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-one-is-struct-3.stderr
blob: a220c8ddb2be6e1c39ef4e90416553881d5e230f (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0623]: lifetime mismatch
  --> $DIR/ex3-both-anon-regions-one-is-struct-3.rs:4:11
   |
LL | fn foo(mut y: Ref, x: &u32) {
   |               ---     ---- these two types are declared with different lifetimes...
LL |     y.b = x;
   |           ^ ...but data from `x` flows into `y` here

error: aborting due to previous error

For more information about this error, try `rustc --explain E0623`.