rust-clippy/tests/ui/print_with_newline.stderr

11 lines
302 B
Text
Raw Normal View History

2017-09-29 17:13:21 +00:00
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`
2018-01-16 16:06:27 +00:00
error: aborting due to previous error