summaryrefslogtreecommitdiffstats
path: root/src/test/ui/moves/move-into-dead-array-1.stderr
blob: 344a6bbf0c92c77b192298f983efc3e988d59efc (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0381]: used binding `a` isn't initialized
  --> $DIR/move-into-dead-array-1.rs:14:5
   |
LL |     let mut a: [D; 4];
   |         ----- binding declared here but left uninitialized
LL |     a[i] = d();
   |     ^^^^ `a` used here but it isn't initialized

error: aborting due to previous error

For more information about this error, try `rustc --explain E0381`.