about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/open_options_fixable.stderr
blob: fc54320fc07d3f4add80066005c3cd8ad9de80c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: file opened with `create`, but `truncate` behavior not defined
  --> tests/ui/open_options_fixable.rs:5:24
   |
LL |     OpenOptions::new().create(true).open("foo.txt");
   |                        ^^^^^^^^^^^^- help: add: `.truncate(true)`
   |
   = help: if you intend to overwrite an existing file entirely, call `.truncate(true)`
   = help: if you instead know that you may want to keep some parts of the old file, call `.truncate(false)`
   = help: alternatively, use `.append(true)` to append to the file instead of overwriting it
   = note: `-D clippy::suspicious-open-options` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::suspicious_open_options)]`

error: aborting due to 1 previous error