about summary refs log tree commit diff
path: root/tests/ui/associated-types/issue-25700.stderr
blob: 8d40e6905e07f62a12f8d3c7cd6f3b9b0bd6df46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
error[E0382]: use of moved value: `t`
  --> $DIR/issue-25700.rs:13:10
   |
LL |     let t = S::<()>(None);
   |         - move occurs because `t` has type `S<()>`, which does not implement the `Copy` trait
LL |     drop(t);
   |          - value moved here
LL |     drop(t);
   |          ^ value used here after move
   |
note: if `S<()>` implemented `Clone`, you could clone the value
  --> $DIR/issue-25700.rs:1:1
   |
LL | struct S<T: 'static>(#[allow(dead_code)] Option<&'static T>);
   | ^^^^^^^^^^^^^^^^^^^^ consider implementing `Clone` for this type
...
LL |     drop(t);
   |          - you could clone this value

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0382`.