]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-18783.stderr
Require Drop impls to have the same constness on its bounds as the bounds on the...
[rust.git] / src / test / ui / issues / issue-18783.stderr
1 error[E0499]: cannot borrow `y` as mutable more than once at a time
2   --> $DIR/issue-18783.rs:7:21
3    |
4 LL |     c.push(Box::new(|| y = 0));
5    |                     -- - first borrow occurs due to use of `y` in closure
6    |                     |
7    |                     first mutable borrow occurs here
8 LL |     c.push(Box::new(|| y = 0));
9    |                     ^^ - second borrow occurs due to use of `y` in closure
10    |                     |
11    |                     second mutable borrow occurs here
12 LL |
13 LL | }
14    | - first borrow might be used here, when `c` is dropped and runs the destructor for type `RefCell<Vec<Box<dyn FnMut()>>>`
15
16 error[E0499]: cannot borrow `y` as mutable more than once at a time
17   --> $DIR/issue-18783.rs:16:29
18    |
19 LL |     Push::push(&c, Box::new(|| y = 0));
20    |                             -- - first borrow occurs due to use of `y` in closure
21    |                             |
22    |                             first mutable borrow occurs here
23 LL |     Push::push(&c, Box::new(|| y = 0));
24    |                             ^^ - second borrow occurs due to use of `y` in closure
25    |                             |
26    |                             second mutable borrow occurs here
27 LL |
28 LL | }
29    | - first borrow might be used here, when `c` is dropped and runs the destructor for type `RefCell<Vec<Box<dyn FnMut()>>>`
30
31 error: aborting due to 2 previous errors
32
33 For more information about this error, try `rustc --explain E0499`.