rust-clippy/tests/ui/print.stderr
2018-12-28 12:41:12 +01:00

60 lines
1.3 KiB
Text

error: use of `Debug`-based formatting
--> $DIR/print.rs:20:19
|
LL | write!(f, "{:?}", 43.1415)
| ^^^^^^
|
= note: `-D clippy::use-debug` implied by `-D warnings`
error: use of `Debug`-based formatting
--> $DIR/print.rs:27:19
|
LL | write!(f, "{:?}", 42.718)
| ^^^^^^
error: use of `println!`
--> $DIR/print.rs:32:5
|
LL | println!("Hello");
| ^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::print-stdout` implied by `-D warnings`
error: use of `print!`
--> $DIR/print.rs:33:5
|
LL | print!("Hello");
| ^^^^^^^^^^^^^^^
error: use of `print!`
--> $DIR/print.rs:35:5
|
LL | print!("Hello {}", "World");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: use of `print!`
--> $DIR/print.rs:37:5
|
LL | print!("Hello {:?}", "World");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: use of `Debug`-based formatting
--> $DIR/print.rs:37:12
|
LL | print!("Hello {:?}", "World");
| ^^^^^^^^^^^^
error: use of `print!`
--> $DIR/print.rs:39:5
|
LL | print!("Hello {:#?}", "#orld");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: use of `Debug`-based formatting
--> $DIR/print.rs:39:12
|
LL | print!("Hello {:#?}", "#orld");
| ^^^^^^^^^^^^^
error: aborting due to 9 previous errors