]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/borrowck/borrowck-for-loop-correct-cmt-for-pattern.stderr
Update tests for changes to cannot move errors
[rust.git] / src / test / ui / borrowck / borrowck-for-loop-correct-cmt-for-pattern.stderr
index fb53b13a58de98df5a5cf14c41330da4ced7a59b..38e41f315fc52016339869e9fa98e950de9c26f0 100644 (file)
@@ -1,29 +1,32 @@
-error[E0507]: cannot move out of borrowed content
-  --> $DIR/borrowck-for-loop-correct-cmt-for-pattern.rs:12:9
+error[E0507]: cannot move out of a shared reference
+  --> $DIR/borrowck-for-loop-correct-cmt-for-pattern.rs:12:15
    |
 LL |     for &a in x.iter() {
-   |         ^-
+   |         --    ^^^^^^^^
    |         ||
-   |         |hint: to prevent move, use `ref a` or `ref mut a`
-   |         cannot move out of borrowed content
+   |         |data moved here
+   |         |move occurs because `a` has type `&mut i32`, which does not implement the `Copy` trait
+   |         help: consider removing the `&`: `a`
 
-error[E0507]: cannot move out of borrowed content
-  --> $DIR/borrowck-for-loop-correct-cmt-for-pattern.rs:18:9
+error[E0507]: cannot move out of a shared reference
+  --> $DIR/borrowck-for-loop-correct-cmt-for-pattern.rs:18:15
    |
 LL |     for &a in &f.a {
-   |         ^-
+   |         --    ^^^^
    |         ||
-   |         |hint: to prevent move, use `ref a` or `ref mut a`
-   |         cannot move out of borrowed content
+   |         |data moved here
+   |         |move occurs because `a` has type `std::boxed::Box<isize>`, which does not implement the `Copy` trait
+   |         help: consider removing the `&`: `a`
 
-error[E0507]: cannot move out of borrowed content
-  --> $DIR/borrowck-for-loop-correct-cmt-for-pattern.rs:22:9
+error[E0507]: cannot move out of a shared reference
+  --> $DIR/borrowck-for-loop-correct-cmt-for-pattern.rs:22:15
    |
 LL |     for &a in x.iter() {
-   |         ^-
+   |         --    ^^^^^^^^
    |         ||
-   |         |hint: to prevent move, use `ref a` or `ref mut a`
-   |         cannot move out of borrowed content
+   |         |data moved here
+   |         |move occurs because `a` has type `std::boxed::Box<i32>`, which does not implement the `Copy` trait
+   |         help: consider removing the `&`: `a`
 
 error: aborting due to 3 previous errors