]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/union/union-lint-dead-code.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / union / union-lint-dead-code.rs
index 64c28d72e9eaa3ee59656d0e29bad07dba2a2299..65aaf0a1d35dac7c34710c6f5ca1763c08951640 100644 (file)
@@ -5,7 +5,7 @@
 
 union Foo {
     x: usize,
-    b: bool, //~ ERROR: field is never read
+    b: bool, //~ ERROR: field `b` is never read
     _unused: u16,
 }