mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-13 08:27:14 +00:00
21 lines
377 B
Rust
21 lines
377 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
|
|
[..] => (),
|
|
}
|
|
}
|