rust-clippy/tests/ui/print_with_newline.stderr

29 lines
981 B
Text
Raw Normal View History

error: using `print!()` with a format string that ends in a newline, consider using `println!()` instead
2017-08-01 15:54:21 +00:00
--> $DIR/print_with_newline.rs:6:5
|
2017-08-01 15:54:21 +00:00
6 | print!("Hello/n");
| ^^^^^^^^^^^^^^^^^^
|
= note: `-D print-with-newline` implied by `-D warnings`
error: using `print!()` with a format string that ends in a newline, consider using `println!()` instead
2017-08-01 15:54:21 +00:00
--> $DIR/print_with_newline.rs:7:5
|
2017-08-01 15:54:21 +00:00
7 | print!("Hello {}/n", "world");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: using `print!()` with a format string that ends in a newline, consider using `println!()` instead
2017-08-01 15:54:21 +00:00
--> $DIR/print_with_newline.rs:8:5
|
2017-08-01 15:54:21 +00:00
8 | print!("Hello {} {}/n/n", "world", "#2");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: using `print!()` with a format string that ends in a newline, consider using `println!()` instead
2017-08-01 15:54:21 +00:00
--> $DIR/print_with_newline.rs:9:5
|
2017-08-01 15:54:21 +00:00
9 | print!("{}/n", 1265);
| ^^^^^^^^^^^^^^^^^^^^^
2017-07-03 04:37:30 +00:00
error: aborting due to 4 previous errors