clippy 0.0.155

A bunch of helpful lints to avoid common pitfalls in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![feature(plugin)]
#![plugin(clippy)]
use std::fs::OpenOptions;

#[allow(unused_must_use)]
#[warn(nonsensical_open_options)]
fn main() {
    OpenOptions::new().read(true).truncate(true).open("foo.txt");
    OpenOptions::new().append(true).truncate(true).open("foo.txt");

    OpenOptions::new().read(true).read(false).open("foo.txt");
    OpenOptions::new().create(true).create(false).open("foo.txt");
    OpenOptions::new().write(true).write(false).open("foo.txt");
    OpenOptions::new().append(true).append(false).open("foo.txt");
    OpenOptions::new().truncate(true).truncate(false).open("foo.txt");
}