]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0509.stderr
Update tests for changes to cannot move errors
[rust.git] / src / test / ui / error-codes / E0509.stderr
1 error[E0509]: cannot move out of type `DropStruct`, which implements the `Drop` trait
2   --> $DIR/E0509.rs:16:23
3    |
4 LL |     let fancy_field = drop_struct.fancy;
5    |                       ^^^^^^^^^^^^^^^^^
6    |                       |
7    |                       cannot move out of here
8    |                       move occurs because `drop_struct.fancy` has type `FancyNum`, which does not implement the `Copy` trait
9    |                       help: consider borrowing here: `&drop_struct.fancy`
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0509`.