Skip to content

Commit 356c63f

Browse files
committed
Correct issue 92267 UI baseline
1 parent 56dfba7 commit 356c63f

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

tests/ui/macros/issue-92267.stderr

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
error: argument never used
22
--> $DIR/issue-92267.rs:3:34
33
|
4-
LL | pub fn main() { println!("🦀%%%", 0) } //~ ERROR argument never used
4+
LL | pub fn main() { println!("🦀%%%", 0) }
55
| ------- ^ argument never used
66
| |
77
| formatting specifier missing
88
|
99
help: format specifiers use curly braces, consider adding a format specifier
1010
|
11-
LL | pub fn main() { println!("🦀%%%{}", 0) } //~ ERROR argument never used
11+
LL | pub fn main() { println!("🦀%%%{}", 0) }
1212
| ++
1313

1414
error: aborting due to 1 previous error
15-

0 commit comments

Comments
 (0)