]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-25700.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-25700.stderr
1 error[E0382]: use of moved value: `t`
2   --> $DIR/issue-25700.rs:23:10
3    |
4 LL |     drop(t);
5    |          - value moved here
6 LL |     drop(t); //~ ERROR use of moved value
7    |          ^ value used here after move
8    |
9    = note: move occurs because `t` has type `S<()>`, which does not implement the `Copy` trait
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0382`.