]> git.lizzy.rs Git - rust.git/blob - src/test/ui/ref-suggestion.nll.stderr
Unit test from #57866.
[rust.git] / src / test / ui / ref-suggestion.nll.stderr
1 error[E0382]: use of moved value: `x`
2   --> $DIR/ref-suggestion.rs:4:5
3    |
4 LL |     let y = x;
5    |             - value moved here
6 LL |     x; //~ ERROR use of moved value
7    |     ^ value used here after move
8    |
9    = note: move occurs because `x` has type `std::vec::Vec<i32>`, which does not implement the `Copy` trait
10
11 error[E0382]: use of moved value: `x`
12   --> $DIR/ref-suggestion.rs:8:5
13    |
14 LL |     let mut y = x;
15    |                 - value moved here
16 LL |     x; //~ ERROR use of moved value
17    |     ^ value used here after move
18    |
19    = note: move occurs because `x` has type `std::vec::Vec<i32>`, which does not implement the `Copy` trait
20
21 error[E0382]: use of moved value: `x`
22   --> $DIR/ref-suggestion.rs:16:5
23    |
24 LL |         (Some(y), ()) => {},
25    |               - value moved here
26 ...
27 LL |     x; //~ ERROR use of partially moved value
28    |     ^ value used here after move
29    |
30    = note: move occurs because value has type `std::vec::Vec<i32>`, which does not implement the `Copy` trait
31
32 error: aborting due to 3 previous errors
33
34 For more information about this error, try `rustc --explain E0382`.