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