]> git.proxmox.com Git - rustc.git/blob - src/test/ui/use/use-after-move-based-on-type.stderr
New upstream version 1.33.0+dfsg1
[rustc.git] / src / test / ui / use / use-after-move-based-on-type.stderr
1 error[E0382]: use of moved value: `x`
2 --> $DIR/use-after-move-based-on-type.rs:4:20
3 |
4 LL | let _y = x;
5 | -- value moved here
6 LL | println!("{}", x); //~ ERROR use of moved value
7 | ^ value used here after move
8 |
9 = note: move occurs because `x` has type `std::string::String`, which does not implement the `Copy` trait
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0382`.