Files
rust/tests/ui/patterns.rs

21 lines
366 B
Rust
Raw Normal View History

#![allow(unused)]
2018-07-28 17:34:52 +02:00
#![warn(clippy::all)]
2019-09-03 04:49:14 +09:00
#![feature(slice_patterns)]
fn main() {
let v = Some(true);
2019-09-03 04:49:14 +09:00
let s = [0, 1, 2, 3, 4];
match v {
Some(x) => (),
2018-12-09 23:26:16 +01:00
y @ _ => (),
}
match v {
2018-12-09 23:26:16 +01:00
Some(x) => (),
y @ None => (), // no error
}
2019-09-03 04:49:14 +09:00
match s {
[x, inside @ .., y] => (), // no error
[..] => (),
}
}