2015-04-13 17:58:18 +00:00
|
|
|
#![feature(plugin)]
|
|
|
|
|
|
|
|
#![plugin(clippy)]
|
|
|
|
#![deny(clippy)]
|
2015-08-21 17:49:00 +00:00
|
|
|
#![allow(unused)]
|
2015-04-13 17:58:18 +00:00
|
|
|
|
2015-08-21 17:49:00 +00:00
|
|
|
fn single_match(){
|
2015-04-13 17:58:18 +00:00
|
|
|
let x = Some(1u8);
|
2015-08-12 08:46:49 +00:00
|
|
|
match x { //~ ERROR you seem to be trying to use match
|
|
|
|
//~^ HELP try
|
2015-08-11 17:26:33 +00:00
|
|
|
Some(y) => {
|
|
|
|
println!("{:?}", y);
|
|
|
|
}
|
2015-04-13 17:58:18 +00:00
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
// Not linted
|
|
|
|
match x {
|
|
|
|
Some(y) => println!("{:?}", y),
|
|
|
|
None => ()
|
|
|
|
}
|
|
|
|
let z = (1u8,1u8);
|
2015-08-12 08:46:49 +00:00
|
|
|
match z { //~ ERROR you seem to be trying to use match
|
|
|
|
//~^ HELP try
|
2015-04-13 17:58:18 +00:00
|
|
|
(2...3, 7...9) => println!("{:?}", z),
|
|
|
|
_ => {}
|
|
|
|
}
|
2015-08-15 07:22:50 +00:00
|
|
|
|
|
|
|
// Not linted (pattern guards used)
|
|
|
|
match x {
|
|
|
|
Some(y) if y == 0 => println!("{:?}", y),
|
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Not linted (content in the else)
|
|
|
|
match z {
|
|
|
|
(2...3, 7...9) => println!("{:?}", z),
|
|
|
|
_ => println!("nope"),
|
|
|
|
}
|
2015-04-13 17:58:18 +00:00
|
|
|
}
|
2015-08-21 17:49:00 +00:00
|
|
|
|
|
|
|
fn ref_pats() {
|
|
|
|
let ref v = Some(0);
|
|
|
|
match v { //~ERROR instead of prefixing all patterns with `&`
|
|
|
|
&Some(v) => println!("{:?}", v),
|
|
|
|
&None => println!("none"),
|
|
|
|
}
|
|
|
|
match v { // this doesn't trigger, we have a different pattern
|
|
|
|
&Some(v) => println!("some"),
|
|
|
|
other => println!("other"),
|
|
|
|
}
|
|
|
|
let ref tup = (1, 2);
|
|
|
|
match tup { //~ERROR instead of prefixing all patterns with `&`
|
|
|
|
&(v, 1) => println!("{}", v),
|
|
|
|
_ => println!("none"),
|
|
|
|
}
|
2015-08-21 18:49:59 +00:00
|
|
|
// special case: using & both in expr and pats
|
|
|
|
let w = Some(0);
|
|
|
|
match &w { //~ERROR you don't need to add `&` to both
|
|
|
|
&Some(v) => println!("{:?}", v),
|
|
|
|
&None => println!("none"),
|
|
|
|
}
|
2015-08-21 17:49:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|