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