rust-clippy/tests/ui/patterns.rs

22 lines
381 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)]
2019-09-02 19:49:14 +00:00
#![feature(slice_patterns)]
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
[..] => (),
}
}