rust/tests/compile-fail/matches.rs

263 lines
6.2 KiB
Rust
Raw Normal View History

2015-04-13 19:58:18 +02:00
#![feature(plugin)]
#![plugin(clippy)]
#![deny(clippy)]
#![allow(unused)]
#![deny(single_match_else)]
2015-04-13 19:58:18 +02:00
2016-01-13 01:19:27 +01:00
use std::borrow::Cow;
enum Foo { Bar, Baz(u8) }
use Foo::*;
enum ExprNode {
ExprAddrOf,
Butterflies,
Unicorns,
}
static NODE: ExprNode = ExprNode::Unicorns;
2016-06-22 02:17:26 +02:00
fn dummy() {
}
fn unwrap_addr() -> Option<&'static ExprNode> {
2016-06-22 02:17:26 +02:00
match ExprNode::Butterflies {
//~^ ERROR you seem to be trying to use match
//~| HELP try
//~| SUGGESTION if let ExprNode::ExprAddrOf = ExprNode::Butterflies { Some(&NODE) } else { let x = 5; None }
ExprNode::ExprAddrOf => Some(&NODE),
2016-06-22 02:17:26 +02:00
_ => { let x = 5; None },
}
}
fn single_match(){
2015-04-13 19:58:18 +02:00
let x = Some(1u8);
2016-01-13 01:19:27 +01:00
2016-06-22 02:17:26 +02:00
match x {
//~^ ERROR you seem to be trying to use match
//~| HELP try
//~| SUGGESTION if let Some(y) = x { println!("{:?}", y); };
Some(y) => { println!("{:?}", y); }
2015-04-13 19:58:18 +02:00
_ => ()
2016-06-22 02:17:26 +02:00
};
2016-01-13 01:19:27 +01:00
2015-04-13 19:58:18 +02:00
let z = (1u8,1u8);
2016-06-22 02:17:26 +02:00
match z {
//~^ ERROR you seem to be trying to use match
//~| HELP try
//~| SUGGESTION if let (2...3, 7...9) = z { dummy() };
(2...3, 7...9) => dummy(),
2015-04-13 19:58:18 +02:00
_ => {}
2016-06-22 02:17:26 +02:00
};
// Not linted (pattern guards used)
match x {
Some(y) if y == 0 => println!("{:?}", y),
_ => ()
}
// Not linted (no block with statements in the single arm)
match z {
(2...3, 7...9) => println!("{:?}", z),
_ => println!("nope"),
}
2015-04-13 19:58:18 +02:00
}
2016-01-13 01:19:27 +01:00
fn single_match_know_enum() {
let x = Some(1u8);
let y : Result<_, i8> = Ok(1i8);
2016-06-22 02:17:26 +02:00
match x {
//~^ ERROR you seem to be trying to use match
//~| HELP try
//~| SUGGESTION if let Some(y) = x { dummy() };
Some(y) => dummy(),
2016-01-13 01:19:27 +01:00
None => ()
2016-06-22 02:17:26 +02:00
};
2016-01-13 01:19:27 +01:00
2016-06-22 02:17:26 +02:00
match y {
//~^ ERROR you seem to be trying to use match
//~| HELP try
//~| SUGGESTION if let Ok(y) = y { dummy() };
Ok(y) => dummy(),
2016-01-13 01:19:27 +01:00
Err(..) => ()
2016-06-22 02:17:26 +02:00
};
2016-01-13 01:19:27 +01:00
let c = Cow::Borrowed("");
2016-06-22 02:17:26 +02:00
match c {
//~^ ERROR you seem to be trying to use match
//~| HELP try
//~| SUGGESTION if let Cow::Borrowed(..) = c { dummy() };
Cow::Borrowed(..) => dummy(),
2016-01-13 01:19:27 +01:00
Cow::Owned(..) => (),
2016-06-22 02:17:26 +02:00
};
2016-01-13 01:19:27 +01:00
let z = Foo::Bar;
// no warning
match z {
Bar => println!("42"),
Baz(_) => (),
}
match z {
Baz(_) => println!("42"),
Bar => (),
}
}
fn match_bool() {
let test: bool = true;
match test {
//~^ ERROR you seem to be trying to match on a boolean expression
//~| HELP try
//~| SUGGESTION if test { 0 } else { 42 };
true => 0,
false => 42,
};
let option = 1;
match option == 1 {
//~^ ERROR you seem to be trying to match on a boolean expression
//~| HELP try
//~| SUGGESTION if option == 1 { 1 } else { 0 };
2015-10-21 08:24:56 +02:00
true => 1,
false => 0,
};
2015-12-23 01:14:10 +01:00
match test {
//~^ ERROR you seem to be trying to match on a boolean expression
//~| HELP try
2016-06-29 21:50:21 +02:00
//~| SUGGESTION if !test { println!("Noooo!"); };
true => (),
false => { println!("Noooo!"); }
2015-10-21 08:24:56 +02:00
};
2015-12-23 01:14:10 +01:00
match test {
//~^ ERROR you seem to be trying to match on a boolean expression
//~| HELP try
2016-06-29 21:50:21 +02:00
//~| SUGGESTION if !test { println!("Noooo!"); };
false => { println!("Noooo!"); }
_ => (),
};
match test && test {
//~^ ERROR you seem to be trying to match on a boolean expression
//~| HELP try
//~| SUGGESTION if !(test && test) { println!("Noooo!"); };
//~| ERROR equal expressions as operands
false => { println!("Noooo!"); }
2015-10-21 08:24:56 +02:00
_ => (),
};
2015-12-23 01:14:10 +01:00
match test {
//~^ ERROR you seem to be trying to match on a boolean expression
//~| HELP try
//~| SUGGESTION if test { println!("Yes!"); } else { println!("Noooo!"); };
false => { println!("Noooo!"); }
true => { println!("Yes!"); }
};
// Not linted
match option {
1 ... 10 => 1,
11 ... 20 => 2,
_ => 3,
};
}
fn ref_pats() {
2015-09-02 08:19:47 +02:00
{
let v = &Some(0);
2016-03-09 16:22:31 +01:00
match v {
//~^ERROR add `&` to all patterns
//~|HELP instead of
2016-05-08 00:56:23 +02:00
//~|SUGGESTION match *v { .. }
2015-09-02 08:19:47 +02:00
&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 tup =& (1, 2);
2016-03-09 16:22:31 +01:00
match tup {
//~^ERROR add `&` to all patterns
//~|HELP instead of
2016-05-08 00:56:23 +02:00
//~|SUGGESTION match *tup { .. }
&(v, 1) => println!("{}", v),
_ => println!("none"),
}
// special case: using & both in expr and pats
let w = Some(0);
2016-03-09 16:22:31 +01:00
match &w {
//~^ERROR add `&` to both
//~|HELP try
2016-05-08 00:56:23 +02:00
//~|SUGGESTION match w { .. }
&Some(v) => println!("{:?}", v),
&None => println!("none"),
}
// false positive: only wildcard pattern
let w = Some(0);
match w {
_ => println!("none"),
}
let a = &Some(0);
2016-03-09 16:22:31 +01:00
if let &None = a {
//~^ERROR add `&` to all patterns
//~|HELP instead of
2016-05-08 00:56:23 +02:00
//~|SUGGESTION if let .. = *a { .. }
println!("none");
}
let b = Some(0);
2016-03-09 16:22:31 +01:00
if let &None = &b {
//~^ERROR add `&` to both
//~|HELP try
2016-05-08 00:56:23 +02:00
//~|SUGGESTION if let .. = b { .. }
println!("none");
}
}
2015-12-23 01:14:10 +01:00
fn overlapping() {
const FOO : u64 = 2;
match 42 {
2015-12-23 11:26:35 +01:00
0 ... 10 => println!("0 ... 10"), //~ERROR: some ranges overlap
2016-06-22 02:17:26 +02:00
0 ... 11 => println!("0 ... 10"), //~NOTE overlaps with this
2015-12-23 01:14:10 +01:00
_ => (),
}
match 42 {
2015-12-23 11:26:35 +01:00
0 ... 5 => println!("0 ... 5"), //~ERROR: some ranges overlap
2015-12-23 01:14:10 +01:00
6 ... 7 => println!("6 ... 7"),
2016-06-22 02:17:26 +02:00
FOO ... 11 => println!("0 ... 10"), //~NOTE overlaps with this
2015-12-23 01:14:10 +01:00
_ => (),
}
match 42 {
2016-06-22 02:17:26 +02:00
2 => println!("2"), //~NOTE overlaps with this
2015-12-23 11:26:35 +01:00
0 ... 5 => println!("0 ... 5"), //~ERROR: some ranges overlap
_ => (),
}
2015-12-23 01:14:10 +01:00
match 42 {
0 ... 10 => println!("0 ... 10"),
11 ... 50 => println!("0 ... 10"),
_ => (),
}
2016-05-31 22:01:56 +02:00
if let None = Some(42) {
// nothing
} else if let None = Some(42) {
// another nothing :-)
}
2015-12-23 01:14:10 +01:00
}
fn main() {
}