]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-25700.stderr
Merge commit '97e504549371d7640cf011d266e3c17394fdddac' into sync_cg_clif-2021-12-20
[rust.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`.