summaryrefslogtreecommitdiffstats
path: root/src/test/ui/macros/issue-99907.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/macros/issue-99907.fixed')
-rw-r--r--src/test/ui/macros/issue-99907.fixed24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/test/ui/macros/issue-99907.fixed b/src/test/ui/macros/issue-99907.fixed
deleted file mode 100644
index 9e0e1b80e..000000000
--- a/src/test/ui/macros/issue-99907.fixed
+++ /dev/null
@@ -1,24 +0,0 @@
-// check-pass
-// run-rustfix
-
-fn main() {
- println!("Hello {f:.1}!", f = 0.02f32);
- //~^ WARNING named argument `f` is not used by name [named_arguments_used_positionally]
- //~| HELP use the named argument by name to avoid ambiguity
-
- println!("Hello {f:1.1}!", f = 0.02f32);
- //~^ WARNING named argument `f` is not used by name [named_arguments_used_positionally]
- //~| HELP use the named argument by name to avoid ambiguity
-
- println!("Hello {f}!", f = 0.02f32);
- //~^ WARNING named argument `f` is not used by name [named_arguments_used_positionally]
- //~| HELP use the named argument by name to avoid ambiguity
-
- println!("Hello {f}!", f = 0.02f32);
- //~^ WARNING named argument `f` is not used by name [named_arguments_used_positionally]
- //~| HELP use the named argument by name to avoid ambiguity
-
- println!("Hello {f}!", f = 0.02f32);
- //~^ WARNING named argument `f` is not used by name [named_arguments_used_positionally]
- //~| HELP use the named argument by name to avoid ambiguity
-}