2022-01-11 13:31:35 -06:00
|
|
|
error: using `writeln!(v, "")`
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/writeln_empty_string.rs:11:5
|
2018-08-01 09:30:44 -05:00
|
|
|
|
|
2022-01-11 13:31:35 -06:00
|
|
|
LL | writeln!(v, "");
|
|
|
|
| ^^^^^^^^^^^^^^^ help: replace it with: `writeln!(v)`
|
2018-08-01 09:30:44 -05:00
|
|
|
|
|
|
|
|
= note: `-D clippy::writeln-empty-string` implied by `-D warnings`
|
2018-04-04 22:46:39 -05:00
|
|
|
|
2022-01-11 13:31:35 -06:00
|
|
|
error: using `writeln!(suggestion, "")`
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/writeln_empty_string.rs:14:5
|
2018-08-20 08:33:43 -05:00
|
|
|
|
|
2022-01-11 13:31:35 -06:00
|
|
|
LL | writeln!(suggestion, "");
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: replace it with: `writeln!(suggestion)`
|
2018-08-20 08:33:43 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-04-04 22:46:39 -05:00
|
|
|
|