mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
8 lines
263 B
Text
8 lines
263 B
Text
error: using `print!()` with a format string that ends in a newline, consider using `println!()` instead
|
|
--> $DIR/print_with_newline.rs:6:5
|
|
|
|
|
6 | print!("Hello/n");
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D print-with-newline` implied by `-D warnings`
|
|
|