summary refs log tree commit diff
path: root/tests/ui/derives/clone-debug-dead-code-in-the-same-struct.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/derives/clone-debug-dead-code-in-the-same-struct.rs')
-rw-r--r--tests/ui/derives/clone-debug-dead-code-in-the-same-struct.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/derives/clone-debug-dead-code-in-the-same-struct.rs b/tests/ui/derives/clone-debug-dead-code-in-the-same-struct.rs
index 885dacc727a..6ab1fb7b039 100644
--- a/tests/ui/derives/clone-debug-dead-code-in-the-same-struct.rs
+++ b/tests/ui/derives/clone-debug-dead-code-in-the-same-struct.rs
@@ -1,9 +1,9 @@
 #![forbid(dead_code)]
 
 #[derive(Debug)]
-pub struct Whatever { //~ ERROR struct `Whatever` is never constructed
+pub struct Whatever {
     pub field0: (),
-    field1: (),
+    field1: (), //~ ERROR fields `field1`, `field2`, `field3`, and `field4` are never read
     field2: (),
     field3: (),
     field4: (),