]> git.lizzy.rs Git - rust.git/blob - tests/ui/print_with_newline.stderr
Merge pull request #2309 from rust-lang-nursery/rustc-monitor
[rust.git] / tests / ui / print_with_newline.stderr
1 error: using `print!()` with a format string that ends in a newline, consider using `println!()` instead
2  --> $DIR/print_with_newline.rs:6:5
3   |
4 6 |     print!("Hello/n");
5   |     ^^^^^^^^^^^^^^^^^^
6   |
7   = note: `-D print-with-newline` implied by `-D warnings`
8
9 error: aborting due to previous error
10