]> git.lizzy.rs Git - rust.git/blob - tests/ui/associated-types/issue-25700.stderr
Rollup merge of #103236 - tspiteri:redoc-int-adc-sbb, r=m-ou-se
[rust.git] / tests / ui / associated-types / 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`.