]> git.proxmox.com Git - rustc.git/blob - tests/ui/error-codes/E0508.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / 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 |
10 help: consider borrowing here
11 |
12 LL | let _value = &array[0];
13 | +
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0508`.