Example for match_if_let

This commit is contained in:
Manish Goregaokar 2014-11-20 00:18:41 +05:30
parent 542bfe3570
commit 883b834068
1 changed files with 23 additions and 0 deletions

23
examples/match_if_let.rs Normal file
View File

@ -0,0 +1,23 @@
#![feature(phase)]
#[phase(plugin)]
extern crate rust_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),
_ => {}
}
}