os-rust/tests/ui/coroutine/yield-while-ref-reborrowed.stderr

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

19 lines
795 B
Text
Raw Normal View History

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