]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-25700.stderr
New upstream version 1.49.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-25700.stderr
1 error[E0382]: use of moved value: `t`
2 --> $DIR/issue-25700.rs:13:10
3 |
4 LL | let t = S::<()>(None);
5 | - move occurs because `t` has type `S<()>`, which does not implement the `Copy` trait
6 LL | drop(t);
7 | - value moved here
8 LL | drop(t);
9 | ^ value used here after move
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0382`.