rust/tests/compile-fail/match_if_let.rs
Manish Goregaokar a5c3102594 Use compiletest
2015-04-14 00:20:44 +05:30

25 lines
582 B
Rust

#![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),
_ => {}
}
}