summary refs log tree commit diff
path: root/src/test/ui/generator/yield-while-ref-reborrowed.stderr
blob: 7269f72973701004734c26b94408d435db728dd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error[E0501]: cannot borrow `x` as immutable because previous closure requires unique access
  --> $DIR/yield-while-ref-reborrowed.rs:45:20
   |
40 |     let mut b = || {
   |                 -- closure construction occurs here
41 |         let a = &mut *x;
   |                       - previous borrow occurs due to use of `x` in closure
...
45 |     println!("{}", x); //~ ERROR
   |                    ^ borrow occurs here
46 |     b.resume();
47 | }
   | - borrow from closure ends here

error: aborting due to previous error