rust/tests/compile-fail/match_if_let.rs

25 lines
582 B
Rust
Raw Normal View History

2015-04-13 12:58:18 -05:00
#![feature(plugin)]
#![plugin(clippy)]
#![deny(clippy)]
fn main(){
let x = Some(1u8);
match x { //~ ERROR You seem to be trying to use match
//~^ NOTE Try if let Some(y) = x { ... }
Some(y) => println!("{:?}", y),
_ => ()
}
// Not linted
match x {
Some(y) => println!("{:?}", y),
None => ()
}
let z = (1u8,1u8);
match z { //~ ERROR You seem to be trying to use match
//~^ NOTE Try if let (2...3, 7...9) = z { ... }
(2...3, 7...9) => println!("{:?}", z),
_ => {}
}
}