]> git.proxmox.com Git - rustc.git/blame - src/test/ui/moves/move-into-dead-array-2.nll.stderr
New upstream version 1.34.2+dfsg1
[rustc.git] / src / test / ui / moves / move-into-dead-array-2.nll.stderr
CommitLineData
b7449926 1error[E0382]: use of moved value: `a`
0731742a 2 --> $DIR/move-into-dead-array-2.rs:14:5
b7449926 3 |
9fa01778
XL
4LL | fn foo(mut a: [D; 4], i: usize) {
5 | ----- move occurs because `a` has type `[D; 4]`, which does not implement the `Copy` trait
b7449926
XL
6LL | drop(a);
7 | - value moved here
8LL | a[i] = d(); //~ ERROR use of moved value: `a`
9 | ^^^^ value used here after move
b7449926
XL
10
11error: aborting due to previous error
12
13For more information about this error, try `rustc --explain E0382`.