rust-clippy/tests/ui/patterns.rs

37 lines
710 B
Rust
Raw Normal View History

2019-09-05 13:45:52 +00:00
// run-rustfix
#![allow(unused)]
2018-07-28 15:34:52 +00:00
#![warn(clippy::all)]
fn main() {
let v = Some(true);
2019-09-02 19:49:14 +00:00
let s = [0, 1, 2, 3, 4];
match v {
Some(x) => (),
2018-12-09 22:26:16 +00:00
y @ _ => (),
}
match v {
2018-12-09 22:26:16 +00:00
Some(x) => (),
y @ None => (), // no error
}
2019-09-02 19:49:14 +00:00
match s {
[x, inside @ .., y] => (), // no error
[..] => (),
}
let mut mutv = vec![1, 2, 3];
// required "ref" left out in suggestion: #5271
match mutv {
ref mut x @ _ => {
x.push(4);
println!("vec: {:?}", x);
},
ref y if y == &vec![0] => (),
}
match mutv {
ref x @ _ => println!("vec: {:?}", x),
ref y if y == &vec![0] => (),
}
}