mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-16 01:38:09 +00:00
22 lines
377 B
Rust
22 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
|
||
|
[..] => (),
|
||
|
}
|
||
|
}
|