2018-08-07 12:01:10 -08:00
|
|
|
error: using `print!()` with a format string that ends in a single newline, consider using `println!()` instead
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/print_with_newline.rs:5:5
|
2018-10-06 09:18:06 -07:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | print!("Hello/n");
|
2018-10-06 09:18:06 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::print-with-newline` implied by `-D warnings`
|
2017-09-29 19:13:21 +02:00
|
|
|
|
2018-08-07 12:01:10 -08:00
|
|
|
error: using `print!()` with a format string that ends in a single newline, consider using `println!()` instead
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/print_with_newline.rs:6:5
|
2018-10-06 09:18:06 -07:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | print!("Hello {}/n", "world");
|
2018-10-06 09:18:06 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-07-23 00:19:07 +02:00
|
|
|
|
2018-08-07 12:01:10 -08:00
|
|
|
error: using `print!()` with a format string that ends in a single newline, consider using `println!()` instead
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/print_with_newline.rs:7:5
|
2018-10-06 09:18:06 -07:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | print!("Hello {} {}/n", "world", "#2");
|
2018-10-06 09:18:06 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-07-23 00:19:07 +02:00
|
|
|
|
2018-08-07 12:01:10 -08:00
|
|
|
error: using `print!()` with a format string that ends in a single newline, consider using `println!()` instead
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/print_with_newline.rs:8:5
|
2018-07-23 00:19:07 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | print!("{}/n", 1265);
|
2018-07-23 00:19:07 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2018-01-16 17:06:27 +01:00
|
|
|
|