summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/print.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/print.stderr')
-rw-r--r--src/tools/clippy/tests/ui/print.stderr54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/print.stderr b/src/tools/clippy/tests/ui/print.stderr
new file mode 100644
index 000000000..1754c4183
--- /dev/null
+++ b/src/tools/clippy/tests/ui/print.stderr
@@ -0,0 +1,54 @@
+error: use of `Debug`-based formatting
+ --> $DIR/print.rs:11:20
+ |
+LL | write!(f, "{:?}", 43.1415)
+ | ^^^^
+ |
+ = note: `-D clippy::use-debug` implied by `-D warnings`
+
+error: use of `println!`
+ --> $DIR/print.rs:23:5
+ |
+LL | println!("Hello");
+ | ^^^^^^^^^^^^^^^^^
+ |
+ = note: `-D clippy::print-stdout` implied by `-D warnings`
+
+error: use of `print!`
+ --> $DIR/print.rs:24:5
+ |
+LL | print!("Hello");
+ | ^^^^^^^^^^^^^^^
+
+error: use of `print!`
+ --> $DIR/print.rs:26:5
+ |
+LL | print!("Hello {}", "World");
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: use of `print!`
+ --> $DIR/print.rs:28:5
+ |
+LL | print!("Hello {:?}", "World");
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: use of `Debug`-based formatting
+ --> $DIR/print.rs:28:19
+ |
+LL | print!("Hello {:?}", "World");
+ | ^^^^
+
+error: use of `print!`
+ --> $DIR/print.rs:30:5
+ |
+LL | print!("Hello {:#?}", "#orld");
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: use of `Debug`-based formatting
+ --> $DIR/print.rs:30:19
+ |
+LL | print!("Hello {:#?}", "#orld");
+ | ^^^^^
+
+error: aborting due to 8 previous errors
+