cf5d4a1b45
Literal `\n` characters (not a newline) in a `r"raw"` string should not fail the lint. This affects both write_with_newline and print_with_newline, so it is added in both places. I also copied a missing test case from write_with_newline over to print_with_newline and added a note that one of those tests is supposed to fail.
35 lines
1.2 KiB
Plaintext
35 lines
1.2 KiB
Plaintext
error: using `print!()` with a format string that ends in a single newline, consider using `println!()` instead
|
|
--> $DIR/print_with_newline.rs:5:5
|
|
|
|
|
LL | print!("Hello/n");
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::print-with-newline` implied by `-D warnings`
|
|
|
|
error: using `print!()` with a format string that ends in a single newline, consider using `println!()` instead
|
|
--> $DIR/print_with_newline.rs:6:5
|
|
|
|
|
LL | print!("Hello {}/n", "world");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: using `print!()` with a format string that ends in a single newline, consider using `println!()` instead
|
|
--> $DIR/print_with_newline.rs:7:5
|
|
|
|
|
LL | print!("Hello {} {}/n", "world", "#2");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: using `print!()` with a format string that ends in a single newline, consider using `println!()` instead
|
|
--> $DIR/print_with_newline.rs:8:5
|
|
|
|
|
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
|
|
|