]> git.proxmox.com Git - rustc.git/blame - src/test/ui/generator/retain-resume-ref.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / generator / retain-resume-ref.stderr
CommitLineData
74b04a01
XL
1error[E0499]: cannot borrow `thing` as mutable more than once at a time
2 --> $DIR/retain-resume-ref.rs:23:25
3 |
4LL | gen.as_mut().resume(&mut thing);
5 | ---------- first mutable borrow occurs here
6LL | gen.as_mut().resume(&mut thing);
ba9703b0
XL
7 | ------ ^^^^^^^^^^ second mutable borrow occurs here
8 | |
9 | first borrow later used by call
74b04a01
XL
10
11error: aborting due to previous error
12
13For more information about this error, try `rustc --explain E0499`.