summaryrefslogtreecommitdiffstats
path: root/src/test/ui/union/union-copy.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/union/union-copy.stderr')
-rw-r--r--src/test/ui/union/union-copy.stderr18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/test/ui/union/union-copy.stderr b/src/test/ui/union/union-copy.stderr
new file mode 100644
index 000000000..8ecdafdde
--- /dev/null
+++ b/src/test/ui/union/union-copy.stderr
@@ -0,0 +1,18 @@
+error[E0204]: the trait `Copy` may not be implemented for this type
+ --> $DIR/union-copy.rs:12:6
+ |
+LL | a: std::mem::ManuallyDrop<String>
+ | --------------------------------- this field does not implement `Copy`
+...
+LL | impl Copy for W {}
+ | ^^^^
+ |
+note: the `Copy` impl for `ManuallyDrop<String>` requires that `String: Copy`
+ --> $DIR/union-copy.rs:8:8
+ |
+LL | a: std::mem::ManuallyDrop<String>
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0204`.