2022-11-21 13:34:47 -06:00
|
|
|
error: use of `print!`
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui-toml/print_macro/print_macro.rs:6:5
|
2022-11-21 13:34:47 -06:00
|
|
|
|
|
|
|
|
LL | print!("{n}");
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::print-stdout` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::print_stdout)]`
|
2022-11-21 13:34:47 -06:00
|
|
|
|
|
|
|
error: use of `eprint!`
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui-toml/print_macro/print_macro.rs:7:5
|
2022-11-21 13:34:47 -06:00
|
|
|
|
|
|
|
|
LL | eprint!("{n}");
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::print-stderr` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::print_stderr)]`
|
2022-11-21 13:34:47 -06:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|