mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
8 lines
239 B
Rust
8 lines
239 B
Rust
|
use std::fs::OpenOptions;
|
||
|
#[allow(unused_must_use)]
|
||
|
#[warn(clippy::suspicious_open_options)]
|
||
|
fn main() {
|
||
|
OpenOptions::new().create(true).open("foo.txt");
|
||
|
//~^ ERROR: file opened with `create`, but `truncate` behavior not defined
|
||
|
}
|