about summary refs log tree commit diff
path: root/src/test/ui/macros/format-foreign.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/macros/format-foreign.rs')
-rw-r--r--src/test/ui/macros/format-foreign.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/ui/macros/format-foreign.rs b/src/test/ui/macros/format-foreign.rs
index cca45ca9ecd..91ca8f5ff76 100644
--- a/src/test/ui/macros/format-foreign.rs
+++ b/src/test/ui/macros/format-foreign.rs
@@ -10,11 +10,11 @@
 
 fn main() {
     println!("%.*3$s %s!\n", "Hello,", "World", 4);
-    println!("%1$*2$.*3$f", 123.456);
+    println!("%1$*2$.*3$f", 123.456); //~ ERROR never used
 
     // This should *not* produce hints, on the basis that there's equally as
     // many "correct" format specifiers.  It's *probably* just an actual typo.
-    println!("{} %f", "one", 2.0);
+    println!("{} %f", "one", 2.0); //~ ERROR never used
 
-    println!("Hi there, $NAME.", NAME="Tim");
+    println!("Hi there, $NAME.", NAME="Tim"); //~ ERROR never used
 }