]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0508.stderr
Update tests for changes to cannot move errors
[rust.git] / src / test / ui / error-codes / E0508.stderr
1 error[E0508]: cannot move out of type `[NonCopy; 1]`, a non-copy array
2   --> $DIR/E0508.rs:5:18
3    |
4 LL |     let _value = array[0];
5    |                  ^^^^^^^^
6    |                  |
7    |                  cannot move out of here
8    |                  move occurs because `array[_]` has type `NonCopy`, which does not implement the `Copy` trait
9    |                  help: consider borrowing here: `&array[0]`
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0508`.