]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0508-fail.stderr
Merge commit 'a98e7ab8b94485be6bd03e0c6b8682ecab5b52e6' into clippyup
[rust.git] / src / test / ui / error-codes / E0508-fail.stderr
1 error[E0508]: cannot move out of type `[NonCopy; 1]`, a non-copy array
2   --> $DIR/E0508-fail.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`.