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