]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/borrowck/borrowck-move-out-from-array.ast.stderr
Unit test from #57866.
[rust.git] / src / test / ui / borrowck / borrowck-move-out-from-array.ast.stderr
index d19c23dce5f5f818636e6e7846b25edb9d200f25..f866ff9e9bae11c5dab08fe72b52dfc96ca325cd 100644 (file)
@@ -1,5 +1,5 @@
 error[E0382]: use of moved value: `a[..]`
-  --> $DIR/borrowck-move-out-from-array.rs:20:14
+  --> $DIR/borrowck-move-out-from-array.rs:10:14
    |
 LL |     let [_, _x] = a;
    |             -- value moved here
@@ -9,7 +9,7 @@ LL |     let [.., _y] = a; //[ast]~ ERROR [E0382]
    = note: move occurs because `a[..]` has type `std::boxed::Box<i32>`, which does not implement the `Copy` trait
 
 error[E0382]: use of moved value: `a[..]`
-  --> $DIR/borrowck-move-out-from-array.rs:27:10
+  --> $DIR/borrowck-move-out-from-array.rs:17:10
    |
 LL |     let [_x, _] = a;
    |          -- value moved here