rust/tests/ui/print.stderr
Luis de Bethencourt 169f35712c clean tests/ui/print.rs
Cleaning the empty lines for clarity.
2017-05-11 16:22:32 +01:00

63 lines
1.3 KiB
Plaintext

error: use of `Debug`-based formatting
--> $DIR/print.rs:12:27
|
12 | write!(f, "{:?}", 43.1415)
| ^^^^^^^
|
note: lint level defined here
--> $DIR/print.rs:3:23
|
3 | #![deny(print_stdout, use_debug)]
| ^^^^^^^^^
error: use of `println!`
--> $DIR/print.rs:24:5
|
24 | println!("Hello");
| ^^^^^^^^^^^^^^^^^^
|
note: lint level defined here
--> $DIR/print.rs:3:9
|
3 | #![deny(print_stdout, use_debug)]
| ^^^^^^^^^^^^
error: use of `print!`
--> $DIR/print.rs:25:5
|
25 | print!("Hello");
| ^^^^^^^^^^^^^^^^
error: use of `print!`
--> $DIR/print.rs:27:5
|
27 | print!("Hello {}", "World");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: use of `print!`
--> $DIR/print.rs:29:5
|
29 | print!("Hello {:?}", "World");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: use of `Debug`-based formatting
--> $DIR/print.rs:29:26
|
29 | print!("Hello {:?}", "World");
| ^^^^^^^
error: use of `print!`
--> $DIR/print.rs:31:5
|
31 | print!("Hello {:#?}", "#orld");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: use of `Debug`-based formatting
--> $DIR/print.rs:31:27
|
31 | print!("Hello {:#?}", "#orld");
| ^^^^^^^
error: aborting due to 8 previous errors