From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/ui/macros/issue-30143.stderr | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 tests/ui/macros/issue-30143.stderr (limited to 'tests/ui/macros/issue-30143.stderr') diff --git a/tests/ui/macros/issue-30143.stderr b/tests/ui/macros/issue-30143.stderr new file mode 100644 index 000000000..fd2378dbc --- /dev/null +++ b/tests/ui/macros/issue-30143.stderr @@ -0,0 +1,35 @@ +error: format argument must be a string literal + --> $DIR/issue-30143.rs:4:14 + | +LL | println!(0); + | ^ + | +help: you might be missing a string literal to format with + | +LL | println!("{}", 0); + | +++++ + +error: format argument must be a string literal + --> $DIR/issue-30143.rs:6:15 + | +LL | eprintln!('a'); + | ^^^ + | +help: you might be missing a string literal to format with + | +LL | eprintln!("{}", 'a'); + | +++++ + +error: format argument must be a string literal + --> $DIR/issue-30143.rs:9:17 + | +LL | writeln!(s, true).unwrap(); + | ^^^^ + | +help: you might be missing a string literal to format with + | +LL | writeln!(s, "{}", true).unwrap(); + | +++++ + +error: aborting due to 3 previous errors + -- cgit v1.2.3