rust-clippy/examples/match_if_let.rs
2014-12-26 05:30:03 +05:30

23 lines
No EOL
365 B
Rust

#![feature(phase)]
#[phase(plugin)]
extern crate clippy;
fn main(){
let x = Some(1u);
match x {
Some(y) => println!("{}", y),
_ => ()
}
// Not linted
match x {
Some(y) => println!("{}", y),
None => ()
}
let z = (1u,1u);
match z {
(2...3, 7...9) => println!("{}", z),
_ => {}
}
}