rust/tests/ui/print_with_newline.stderr

35 lines
1.2 KiB
Plaintext
Raw Normal View History

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