rust/tests/ui/or-patterns/exhaustiveness-pass.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
733 B
Rust
Raw Normal View History

#![deny(unreachable_patterns)]
2019-12-27 11:53:00 -06:00
// check-pass
2019-12-27 11:53:00 -06:00
// We wrap patterns in a tuple because top-level or-patterns were special-cased.
fn main() {
2019-11-29 06:25:36 -06:00
match (0,) {
(1 | 2,) => {}
_ => {}
}
2019-11-29 06:25:36 -06:00
match (0, 0) {
(1 | 2, 3 | 4) => {}
(1, 2) => {}
2019-11-29 06:25:36 -06:00
(3, 1) => {}
_ => {}
}
match (Some(0u8),) {
(None | Some(0 | 1),) => {}
(Some(2..=255),) => {}
}
2019-11-29 06:25:36 -06:00
match ((0,),) {
((0 | 1,) | (2 | 3,),) => {}
((_,),) => {}
}
match (&[0u8][..],) {
([] | [0 | 1..=255] | [_, ..],) => {}
}
2019-11-29 06:25:36 -06:00
match ((0, 0),) {
((0, 0) | (0, 1),) => {}
_ => {}
}
match ((0, 0),) {
((0, 0) | (1, 0),) => {}
_ => {}
}
}