2021-07-11 20:30:19 -05:00
|
|
|
error: use of `writeln!(stderr(), ...).unwrap()`
|
2019-09-15 12:33:20 -05:00
|
|
|
--> $DIR/explicit_write_non_rustfix.rs:7:5
|
|
|
|
|
|
|
|
|
LL | writeln!(std::io::stderr(), "foo {}", bar).unwrap();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::explicit-write` implied by `-D warnings`
|
2021-07-11 20:30:19 -05:00
|
|
|
= help: consider using `eprintln!` instead
|
2019-09-15 12:33:20 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|