summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/vtable/issue-97381.stderr
blob: 89360c44e78b45de94145848ed48cdebd67e0b38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0505]: cannot move out of `v` because it is borrowed
  --> $DIR/issue-97381.rs:26:14
   |
LL |     let v = [1, 2, 3]
   |         - binding `v` declared here
...
LL |     let el = &v[0];
   |               - borrow of `v` occurs here
LL |
LL |     for _ in v {
   |              ^ move out of `v` occurs here
LL |
LL |         println!("{}", ***el > 0);
   |                         ---- borrow later used here

error: aborting due to previous error

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