summary refs log tree commit diff
path: root/src/test/ui/issue-42796.stderr
blob: 9c2481b2f90aad52e7ae51b334f61974ce8db6de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0382]: use of moved value: `s`
  --> $DIR/issue-42796.rs:28:20
   |
LL |     let mut s_copy = s;
   |         ---------- value moved here
...
LL |     println!("{}", s); //~ ERROR use of moved value
   |                    ^ value used here after move
   |
   = note: move occurs because `s` has type `std::string::String`, which does not implement the `Copy` trait

error: aborting due to previous error

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