blob: 42bb0438dcee8850fbd5f24388833b07e68e5b12 [file] [log] [blame] [edit]
error: unnecessary use of `.write(true)` because there is `.append(true)`
--> tests/ui/ineffective_open_options.rs:8:9
|
LL | .write(true)
| ^^^^^^^^^^^^ help: remove `.write(true)`
|
= note: `-D clippy::ineffective-open-options` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::ineffective_open_options)]`
error: unnecessary use of `.write(true)` because there is `.append(true)`
--> tests/ui/ineffective_open_options.rs:17:9
|
LL | .write(true)
| ^^^^^^^^^^^^ help: remove `.write(true)`
error: aborting due to 2 previous errors