rust/tests/ui/generator/yield-while-ref-reborrowed.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
817 B
Plaintext
Raw Normal View History

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