2017-07-15 05:52:49 -05:00
|
|
|
error[E0501]: cannot borrow `x` as immutable because previous closure requires unique access
|
2018-10-04 13:49:38 -05:00
|
|
|
--> $DIR/yield-while-ref-reborrowed.rs:36:20
|
2017-07-15 05:52:49 -05:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let mut b = || {
|
2019-04-22 02:40:08 -05:00
|
|
|
| -- generator construction occurs here
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let a = &mut *x;
|
2019-04-22 02:40:08 -05:00
|
|
|
| - first borrow occurs due to use of `x` in generator
|
2017-07-15 05:52:49 -05:00
|
|
|
...
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | println!("{}", x);
|
2019-04-22 02:40:08 -05:00
|
|
|
| ^ second borrow occurs here
|
2018-10-04 13:49:38 -05:00
|
|
|
LL | Pin::new(&mut b).resume();
|
2019-04-22 02:40:08 -05:00
|
|
|
| ------ first borrow later used here
|
2017-07-15 05:52:49 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0501`.
|