rust-clippy/tests/ui/patterns.rs
2019-09-05 22:45:52 +09:00

21 lines
381 B
Rust

// run-rustfix
#![allow(unused)]
#![warn(clippy::all)]
#![feature(slice_patterns)]
fn main() {
let v = Some(true);
let s = [0, 1, 2, 3, 4];
match v {
Some(x) => (),
y @ _ => (),
}
match v {
Some(x) => (),
y @ None => (), // no error
}
match s {
[x, inside @ .., y] => (), // no error
[..] => (),
}
}