]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0508.stderr
Rollup merge of #105674 - estebank:iterator-chains, r=oli-obk
[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    |
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`.