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