2017-07-15 05:52:49 -05:00
|
|
|
error[E0501]: cannot borrow `x` as immutable because previous closure requires unique access
|
|
|
|
--> $DIR/yield-while-ref-reborrowed.rs:45:20
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let mut b = || {
|
2017-07-15 05:52:49 -05:00
|
|
|
| -- closure construction occurs here
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let a = &mut *x;
|
2017-07-15 05:52:49 -05:00
|
|
|
| - previous borrow occurs due to use of `x` in closure
|
|
|
|
...
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | println!("{}", x); //~ ERROR
|
2017-07-15 05:52:49 -05:00
|
|
|
| ^ borrow occurs here
|
|
|
|
46 | b.resume();
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | }
|
2017-07-15 05:52:49 -05:00
|
|
|
| - borrow from closure ends here
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0501"
|