Skip to content

Commit

Permalink
Add nll test
Browse files Browse the repository at this point in the history
  • Loading branch information
estebank committed Mar 24, 2019
1 parent ae883dc commit 66202c1
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/test/ui/suggestions/borrow-for-loop-head.nll.stderr
@@ -0,0 +1,24 @@
error[E0505]: cannot move out of `a` because it is borrowed
--> $DIR/borrow-for-loop-head.rs:4:18
|
LL | for i in &a {
| --
| |
| borrow of `a` occurs here
| borrow later used here
LL | for j in a {
| ^ move out of `a` occurs here

error[E0382]: use of moved value: `a`
--> $DIR/borrow-for-loop-head.rs:4:18
|
LL | let a = vec![1, 2, 3];
| - move occurs because `a` has type `std::vec::Vec<i32>`, which does not implement the `Copy` trait
LL | for i in &a {
LL | for j in a {
| ^ value moved here, in previous iteration of loop

error: aborting due to 2 previous errors

Some errors occurred: E0382, E0505.
For more information about an error, try `rustc --explain E0382`.

0 comments on commit 66202c1

Please sign in to comment.