rust/src/test/ui/generator/yield-while-ref-reborrowed.stderr

18 lines
599 B
Plaintext
Raw Normal View History

error[E0501]: cannot borrow `x` as immutable because previous closure requires unique access
2018-12-25 09:56:47 -06:00
--> $DIR/yield-while-ref-reborrowed.rs:35:20
|
2018-02-22 18:42:32 -06:00
LL | let mut b = || {
| -- closure construction occurs here
2018-02-22 18:42:32 -06:00
LL | let a = &mut *x;
| - previous borrow occurs due to use of `x` in closure
...
2018-02-22 18:42:32 -06:00
LL | println!("{}", x); //~ ERROR
| ^ borrow occurs here
2018-02-24 17:01:39 -06:00
LL | b.resume();
2018-02-22 18:42:32 -06:00
LL | }
| - borrow from closure ends here
error: aborting due to previous error
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0501`.