2017-07-15 06:52:49 -04:00
error[E0501]: cannot borrow `x` as immutable because previous closure requires unique access
2018-10-04 20:49:38 +02:00
--> $DIR/yield-while-ref-reborrowed.rs:36:20
2017-07-15 06:52:49 -04:00
|
2018-02-23 03:42:32 +03:00
LL | let mut b = || {
2019-04-22 08:40:08 +01:00
| -- generator construction occurs here
2018-02-23 03:42:32 +03:00
LL | let a = &mut *x;
2021-03-17 02:51:27 -04:00
| -- first borrow occurs due to use of `x` in generator
2017-07-15 06:52:49 -04:00
...
2019-03-09 15:03:44 +03:00
LL | println!("{}", x);
2019-04-22 08:40:08 +01:00
| ^ second borrow occurs here
2020-01-25 20:03:10 +01:00
LL | Pin::new(&mut b).resume(());
2019-04-22 08:40:08 +01:00
| ------ first borrow later used here
2021-10-21 09:01:16 -05:00
|
2022-06-20 19:25:52 -07:00
= note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)
2017-07-15 06:52:49 -04:00
error: aborting due to previous error
2018-03-03 15:59:40 +01:00
For more information about this error, try `rustc --explain E0501`.