]> git.proxmox.com Git - rustc.git/blob - src/test/ui/nll/issue-52086.stderr
Update upstream source from tag 'upstream/1.31.0_beta.4+dfsg1'
[rustc.git] / src / test / ui / nll / issue-52086.stderr
1 error[E0507]: cannot move out of an `Rc`
2 --> $DIR/issue-52086.rs:20:10
3 |
4 LL | drop(x.field);
5 | ^^^^^^^ cannot move out of an `Rc`
6
7 error[E0507]: cannot move out of an `Arc`
8 --> $DIR/issue-52086.rs:23:10
9 |
10 LL | drop(y.field);
11 | ^^^^^^^ cannot move out of an `Arc`
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0507`.