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

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

error: aborting due to 2 previous errors