rust-clippy/tests/ui/open_options.rs

23 lines
1 KiB
Rust
Raw Normal View History

2015-10-07 11:15:14 +00:00
use std::fs::OpenOptions;
#[allow(unused_must_use)]
2018-07-28 15:34:52 +00:00
#[warn(clippy::nonsensical_open_options)]
2015-10-07 11:15:14 +00:00
fn main() {
2017-02-08 13:58:07 +00:00
OpenOptions::new().read(true).truncate(true).open("foo.txt");
//~^ ERROR: file opened with `truncate` and `read`
//~| NOTE: `-D clippy::nonsensical-open-options` implied by `-D warnings`
2017-02-08 13:58:07 +00:00
OpenOptions::new().append(true).truncate(true).open("foo.txt");
//~^ ERROR: file opened with `append` and `truncate`
2016-02-05 20:54:29 +00:00
2017-02-08 13:58:07 +00:00
OpenOptions::new().read(true).read(false).open("foo.txt");
//~^ ERROR: the method `read` is called more than once
2017-02-08 13:58:07 +00:00
OpenOptions::new().create(true).create(false).open("foo.txt");
//~^ ERROR: the method `create` is called more than once
2017-02-08 13:58:07 +00:00
OpenOptions::new().write(true).write(false).open("foo.txt");
//~^ ERROR: the method `write` is called more than once
2017-02-08 13:58:07 +00:00
OpenOptions::new().append(true).append(false).open("foo.txt");
//~^ ERROR: the method `append` is called more than once
2017-02-08 13:58:07 +00:00
OpenOptions::new().truncate(true).truncate(false).open("foo.txt");
//~^ ERROR: the method `truncate` is called more than once
2015-10-07 11:15:14 +00:00
}