rust/tests/ui/print.stderr

55 lines
1.2 KiB
Text
Raw Normal View History

error: use of `Debug`-based formatting
--> $DIR/print.rs:11:20
|
2018-12-27 16:57:55 +01:00
LL | write!(f, "{:?}", 43.1415)
| ^^^^
|
= note: `-D clippy::use-debug` implied by `-D warnings`
error: use of `println!`
--> $DIR/print.rs:23:5
|
2018-12-27 16:57:55 +01:00
LL | println!("Hello");
| ^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::print-stdout` implied by `-D warnings`
error: use of `print!`
--> $DIR/print.rs:24:5
|
2018-12-27 16:57:55 +01:00
LL | print!("Hello");
| ^^^^^^^^^^^^^^^
error: use of `print!`
--> $DIR/print.rs:26:5
|
2018-12-27 16:57:55 +01:00
LL | print!("Hello {}", "World");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: use of `print!`
--> $DIR/print.rs:28:5
|
2018-12-27 16:57:55 +01:00
LL | print!("Hello {:?}", "World");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: use of `Debug`-based formatting
--> $DIR/print.rs:28:19
|
2018-12-27 16:57:55 +01:00
LL | print!("Hello {:?}", "World");
| ^^^^
error: use of `print!`
--> $DIR/print.rs:30:5
|
2018-12-27 16:57:55 +01:00
LL | print!("Hello {:#?}", "#orld");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: use of `Debug`-based formatting
--> $DIR/print.rs:30:19
|
2018-12-27 16:57:55 +01:00
LL | print!("Hello {:#?}", "#orld");
| ^^^^^
2020-01-14 16:28:20 +01:00
error: aborting due to 8 previous errors
2018-01-16 17:06:27 +01:00