about summary refs log tree commit diff
path: root/src/test/ui/union-fields.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/union-fields.rs')
-rw-r--r--src/test/ui/union-fields.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/ui/union-fields.rs b/src/test/ui/union-fields.rs
index 021f57e3eee..dc551bb8998 100644
--- a/src/test/ui/union-fields.rs
+++ b/src/test/ui/union-fields.rs
@@ -13,19 +13,19 @@
 union U1 {
     a: u8, // should not be reported
     b: u8, // should not be reported
-    c: u8, // should be reported
+    c: u8, //~ ERROR field is never used
 }
 union U2 {
-    a: u8, // should be reported
+    a: u8, //~ ERROR field is never used
     b: u8, // should not be reported
     c: u8, // should not be reported
 }
-union NoDropLike { a: u8 } // should be reported as unused
+union NoDropLike { a: u8 } //~ ERROR field is never used
 
 union U {
     a: u8, // should not be reported
     b: u8, // should not be reported
-    c: u8, // should be reported
+    c: u8, //~ ERROR field is never used
 }
 type A = U;