rust/tests/ui/patterns.rs

22 lines
381 B
Rust
Raw Normal View History

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