2019-04-22 07:40:08 +00:00
|
|
|
error[E0382]: assign of moved value: `t`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/borrowck-partial-reinit-2.rs:15:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
LL | let mut t = Test { a: 1, b: None};
|
|
|
|
| ----- move occurs because `t` has type `Test`, which does not implement the `Copy` trait
|
|
|
|
LL | let mut u = Test { a: 2, b: Some(Box::new(t))};
|
|
|
|
| - value moved here
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | t.b = Some(Box::new(u));
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^^^ value assigned here after move
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
For more information about this error, try `rustc --explain E0382`.
|