]> git.lizzy.rs Git - rust.git/blob - src/test/ui/moves/moves-based-on-type-access-to-field.nll.stderr
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / moves / moves-based-on-type-access-to-field.nll.stderr
1 error[E0382]: borrow of moved value: `x`
2   --> $DIR/moves-based-on-type-access-to-field.rs:11:12
3    |
4 LL |     consume(x.into_iter().next().unwrap());
5    |             - value moved here
6 LL |     touch(&x[0]); //~ ERROR use of moved value: `x`
7    |            ^ value borrowed here after move
8    |
9    = note: move occurs because `x` has type `std::vec::Vec<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`.