summary refs log tree commit diff
path: root/src/test/ui/issue-18783.stderr
blob: 64d2809a36ae1771a1aeb003b2e702ea44ca3d65 (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
26
27
28
29
30
31
32
33
error[E0499]: cannot borrow `y` as mutable more than once at a time
  --> $DIR/issue-18783.rs:17:21
   |
LL |     c.push(Box::new(|| y = 0));
   |                     -- - previous borrow occurs due to use of `y` in closure
   |                     |
   |                     first mutable borrow occurs here
LL |     c.push(Box::new(|| y = 0));
   |                     ^^ - borrow occurs due to use of `y` in closure
   |                     |
   |                     second mutable borrow occurs here
LL | //~^ ERROR cannot borrow `y` as mutable more than once at a time
LL | }
   | - first borrow ends here

error[E0499]: cannot borrow `y` as mutable more than once at a time
  --> $DIR/issue-18783.rs:26:29
   |
LL |     Push::push(&c, Box::new(|| y = 0));
   |                             -- - previous borrow occurs due to use of `y` in closure
   |                             |
   |                             first mutable borrow occurs here
LL |     Push::push(&c, Box::new(|| y = 0));
   |                             ^^ - borrow occurs due to use of `y` in closure
   |                             |
   |                             second mutable borrow occurs here
LL | //~^ ERROR cannot borrow `y` as mutable more than once at a time
LL | }
   | - first borrow ends here

error: aborting due to 2 previous errors

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