mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
28 lines
1 KiB
Text
28 lines
1 KiB
Text
error: using `print!()` with a format string that ends in a single newline, consider using `println!()` instead
|
|
--> $DIR/print_with_newline.rs:14: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:15: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:16: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:17:5
|
|
|
|
|
LL | print!("{}/n", 1265);
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 4 previous errors
|
|
|