summary refs log tree commit diff
path: root/src/test/ui/borrowck/mut-borrow-outside-loop.stderr
blob: 95e9fa19129be172b57940fbca2d24e6f3929b08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
error[E0499]: cannot borrow `void` as mutable more than once at a time
  --> $DIR/mut-borrow-outside-loop.rs:17:23
   |
LL |     let first = &mut void;
   |                      ---- first mutable borrow occurs here
LL |     let second = &mut void; //~ ERROR cannot borrow
   |                       ^^^^ second mutable borrow occurs here
...
LL | }
   | - first borrow ends here

error[E0499]: cannot borrow `inner_void` as mutable more than once at a time
  --> $DIR/mut-borrow-outside-loop.rs:25:33
   |
LL |         let inner_first = &mut inner_void;
   |                                ---------- first mutable borrow occurs here
LL |         let inner_second = &mut inner_void; //~ ERROR cannot borrow
   |                                 ^^^^^^^^^^ second mutable borrow occurs here
...
LL |     }
   |     - first borrow ends here

error: aborting due to 2 previous errors

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