blob: 25b6d8a47d28c68d5121f74a7822be20f5f773d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0509]: cannot move out of type `DropStruct`, which implements the `Drop` trait
--> $DIR/E0509.rs:16:23
|
LL | let fancy_field = drop_struct.fancy;
| ^^^^^^^^^^^^^^^^^
| |
| cannot move out of here
| help: consider using a reference instead: `&drop_struct.fancy`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0509`.
|