summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0509.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/error-codes/E0509.stderr')
-rw-r--r--src/test/ui/error-codes/E0509.stderr13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/test/ui/error-codes/E0509.stderr b/src/test/ui/error-codes/E0509.stderr
deleted file mode 100644
index cbfbc3ccf..000000000
--- a/src/test/ui/error-codes/E0509.stderr
+++ /dev/null
@@ -1,13 +0,0 @@
-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
- | move occurs because `drop_struct.fancy` has type `FancyNum`, which does not implement the `Copy` trait
- | help: consider borrowing here: `&drop_struct.fancy`
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0509`.