summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/missing-writer.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:20:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:20:29 +0000
commit631cd5845e8de329d0e227aaa707d7ea228b8f8f (patch)
treea1b87c8f8cad01cf18f7c5f57a08f102771ed303 /tests/ui/macros/missing-writer.stderr
parentAdding debian version 1.69.0+dfsg1-1. (diff)
downloadrustc-631cd5845e8de329d0e227aaa707d7ea228b8f8f.tar.xz
rustc-631cd5845e8de329d0e227aaa707d7ea228b8f8f.zip
Merging upstream version 1.70.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/macros/missing-writer.stderr')
-rw-r--r--tests/ui/macros/missing-writer.stderr59
1 files changed, 59 insertions, 0 deletions
diff --git a/tests/ui/macros/missing-writer.stderr b/tests/ui/macros/missing-writer.stderr
new file mode 100644
index 000000000..86dfe7d65
--- /dev/null
+++ b/tests/ui/macros/missing-writer.stderr
@@ -0,0 +1,59 @@
+error: format argument must be a string literal
+ --> $DIR/missing-writer.rs:5:21
+ |
+LL | write!("{}_{}", x, y);
+ | ^
+ |
+help: you might be missing a string literal to format with
+ |
+LL | write!("{}_{}", "{} {}", x, y);
+ | ++++++++
+
+error: format argument must be a string literal
+ --> $DIR/missing-writer.rs:11:23
+ |
+LL | writeln!("{}_{}", x, y);
+ | ^
+ |
+help: you might be missing a string literal to format with
+ |
+LL | writeln!("{}_{}", "{} {}", x, y);
+ | ++++++++
+
+error[E0599]: cannot write into `&'static str`
+ --> $DIR/missing-writer.rs:5:12
+ |
+LL | write!("{}_{}", x, y);
+ | -------^^^^^^^------- method not found in `&str`
+ |
+note: must implement `io::Write`, `fmt::Write`, or have a `write_fmt` method
+ --> $DIR/missing-writer.rs:5:12
+ |
+LL | write!("{}_{}", x, y);
+ | ^^^^^^^
+help: a writer is needed before this format string
+ --> $DIR/missing-writer.rs:5:12
+ |
+LL | write!("{}_{}", x, y);
+ | ^
+
+error[E0599]: cannot write into `&'static str`
+ --> $DIR/missing-writer.rs:11:14
+ |
+LL | writeln!("{}_{}", x, y);
+ | ---------^^^^^^^------- method not found in `&str`
+ |
+note: must implement `io::Write`, `fmt::Write`, or have a `write_fmt` method
+ --> $DIR/missing-writer.rs:11:14
+ |
+LL | writeln!("{}_{}", x, y);
+ | ^^^^^^^
+help: a writer is needed before this format string
+ --> $DIR/missing-writer.rs:11:14
+ |
+LL | writeln!("{}_{}", x, y);
+ | ^
+
+error: aborting due to 4 previous errors
+
+For more information about this error, try `rustc --explain E0599`.