| error: use of `println!` |
| --> tests/ui/print_stdout.rs:5:5 |
| | |
| LL | println!("Hello"); |
| | ^^^^^^^^^^^^^^^^^ |
| | |
| = note: `-D clippy::print-stdout` implied by `-D warnings` |
| = help: to override `-D warnings` add `#[allow(clippy::print_stdout)]` |
| |
| error: use of `print!` |
| --> tests/ui/print_stdout.rs:8:5 |
| | |
| LL | print!("Hello"); |
| | ^^^^^^^^^^^^^^^ |
| |
| error: use of `print!` |
| --> tests/ui/print_stdout.rs:11:5 |
| | |
| LL | print!("Hello {}", "World"); |
| | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| |
| error: use of `print!` |
| --> tests/ui/print_stdout.rs:14:5 |
| | |
| LL | print!("Hello {:?}", "World"); |
| | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| |
| error: use of `print!` |
| --> tests/ui/print_stdout.rs:17:5 |
| | |
| LL | print!("Hello {:#?}", "#orld"); |
| | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| |
| error: aborting due to 5 previous errors |
| |