2018-11-29 18:44:33 -06:00
|
|
|
#![feature(precise_pointer_size_matching)]
|
2018-05-19 19:55:05 -05:00
|
|
|
#![feature(exclusive_range_pattern)]
|
2018-11-30 04:40:59 -06:00
|
|
|
|
2018-05-19 19:55:05 -05:00
|
|
|
#![deny(unreachable_patterns)]
|
|
|
|
|
2018-11-30 15:13:07 -06:00
|
|
|
use std::{char, u8, u16, u32, u64, u128, i8, i16, i32, i64, i128};
|
2018-05-19 19:55:05 -05:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x: u8 = 0;
|
|
|
|
|
|
|
|
// A single range covering the entire domain.
|
|
|
|
match x {
|
|
|
|
0 ..= 255 => {} // ok
|
|
|
|
}
|
|
|
|
|
|
|
|
// A combination of ranges and values.
|
|
|
|
// These are currently allowed to be overlapping.
|
|
|
|
match x {
|
|
|
|
0 ..= 32 => {}
|
|
|
|
33 => {}
|
|
|
|
34 .. 128 => {}
|
|
|
|
100 ..= 200 => {}
|
|
|
|
200 => {} //~ ERROR unreachable pattern
|
|
|
|
201 ..= 255 => {}
|
|
|
|
}
|
|
|
|
|
|
|
|
// An incomplete set of values.
|
2018-05-21 19:03:05 -05:00
|
|
|
match x { //~ ERROR non-exhaustive patterns
|
2018-05-19 19:55:05 -05:00
|
|
|
0 .. 128 => {}
|
|
|
|
}
|
|
|
|
|
|
|
|
// A more incomplete set of values.
|
|
|
|
match x { //~ ERROR non-exhaustive patterns
|
|
|
|
0 ..= 10 => {}
|
|
|
|
20 ..= 30 => {}
|
|
|
|
35 => {}
|
|
|
|
70 .. 255 => {}
|
|
|
|
}
|
|
|
|
|
|
|
|
let x: i8 = 0;
|
|
|
|
match x { //~ ERROR non-exhaustive patterns
|
|
|
|
-7 => {}
|
|
|
|
-5..=120 => {}
|
|
|
|
-2..=20 => {} //~ ERROR unreachable pattern
|
|
|
|
125 => {}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Let's test other types too!
|
2018-05-21 14:40:38 -05:00
|
|
|
let c: char = '\u{0}';
|
|
|
|
match c {
|
2018-05-19 19:55:05 -05:00
|
|
|
'\u{0}' ..= char::MAX => {} // ok
|
|
|
|
}
|
|
|
|
|
2018-05-21 14:40:38 -05:00
|
|
|
// We can actually get away with just covering the
|
|
|
|
// following two ranges, which correspond to all
|
|
|
|
// valid Unicode Scalar Values.
|
|
|
|
match c {
|
|
|
|
'\u{0000}' ..= '\u{D7FF}' => {}
|
|
|
|
'\u{E000}' ..= '\u{10_FFFF}' => {}
|
|
|
|
}
|
|
|
|
|
2018-05-19 19:55:05 -05:00
|
|
|
match 0u16 {
|
|
|
|
0 ..= u16::MAX => {} // ok
|
|
|
|
}
|
|
|
|
|
|
|
|
match 0u32 {
|
|
|
|
0 ..= u32::MAX => {} // ok
|
|
|
|
}
|
|
|
|
|
|
|
|
match 0u64 {
|
|
|
|
0 ..= u64::MAX => {} // ok
|
|
|
|
}
|
|
|
|
|
|
|
|
match 0u128 {
|
|
|
|
0 ..= u128::MAX => {} // ok
|
|
|
|
}
|
|
|
|
|
|
|
|
match 0i8 {
|
2018-05-21 14:40:38 -05:00
|
|
|
-128 ..= 127 => {} // ok
|
2018-05-19 19:55:05 -05:00
|
|
|
}
|
|
|
|
|
2018-05-21 19:03:05 -05:00
|
|
|
match 0i8 { //~ ERROR non-exhaustive patterns
|
|
|
|
-127 ..= 127 => {}
|
|
|
|
}
|
|
|
|
|
2018-05-19 19:55:05 -05:00
|
|
|
match 0i16 {
|
|
|
|
i16::MIN ..= i16::MAX => {} // ok
|
|
|
|
}
|
|
|
|
|
2018-05-21 19:03:05 -05:00
|
|
|
match 0i16 { //~ ERROR non-exhaustive patterns
|
|
|
|
i16::MIN ..= -1 => {}
|
|
|
|
1 ..= i16::MAX => {}
|
|
|
|
}
|
|
|
|
|
2018-05-19 19:55:05 -05:00
|
|
|
match 0i32 {
|
|
|
|
i32::MIN ..= i32::MAX => {} // ok
|
|
|
|
}
|
|
|
|
|
|
|
|
match 0i64 {
|
|
|
|
i64::MIN ..= i64::MAX => {} // ok
|
|
|
|
}
|
|
|
|
|
|
|
|
match 0i128 {
|
|
|
|
i128::MIN ..= i128::MAX => {} // ok
|
|
|
|
}
|
2018-06-02 04:53:47 -05:00
|
|
|
|
|
|
|
// Make sure that guards don't factor into the exhaustiveness checks.
|
|
|
|
match 0u8 { //~ ERROR non-exhaustive patterns
|
|
|
|
0 .. 128 => {}
|
|
|
|
128 ..= 255 if true => {}
|
|
|
|
}
|
|
|
|
|
|
|
|
match 0u8 {
|
|
|
|
0 .. 128 => {}
|
|
|
|
128 ..= 255 if false => {}
|
|
|
|
128 ..= 255 => {} // ok, because previous arm was guarded
|
|
|
|
}
|
2018-08-12 14:47:23 -05:00
|
|
|
|
|
|
|
// Now things start getting a bit more interesting. Testing products!
|
|
|
|
match (0u8, Some(())) { //~ ERROR non-exhaustive patterns
|
|
|
|
(1, _) => {}
|
|
|
|
(_, None) => {}
|
|
|
|
}
|
2018-08-13 21:02:31 -05:00
|
|
|
|
|
|
|
match (0u8, true) { //~ ERROR non-exhaustive patterns
|
2018-08-21 15:04:19 -05:00
|
|
|
(0 ..= 125, false) => {}
|
|
|
|
(128 ..= 255, false) => {}
|
|
|
|
(0 ..= 255, true) => {}
|
2018-08-13 21:02:31 -05:00
|
|
|
}
|
|
|
|
|
2018-08-14 10:40:04 -05:00
|
|
|
match (0u8, true) { // ok
|
2018-08-21 15:04:19 -05:00
|
|
|
(0 ..= 125, false) => {}
|
|
|
|
(128 ..= 255, false) => {}
|
|
|
|
(0 ..= 255, true) => {}
|
|
|
|
(125 .. 128, false) => {}
|
2018-08-13 21:02:31 -05:00
|
|
|
}
|
2018-08-14 10:40:04 -05:00
|
|
|
|
|
|
|
match 0u8 { // ok
|
2018-08-21 15:04:19 -05:00
|
|
|
0 .. 2 => {}
|
|
|
|
1 ..= 2 => {}
|
2018-08-14 10:40:04 -05:00
|
|
|
_ => {}
|
|
|
|
}
|
2018-08-21 15:04:19 -05:00
|
|
|
|
2018-08-21 17:27:45 -05:00
|
|
|
const LIM: u128 = u128::MAX - 1;
|
2018-08-21 15:04:19 -05:00
|
|
|
match 0u128 { //~ ERROR non-exhaustive patterns
|
2018-08-21 17:27:45 -05:00
|
|
|
0 ..= LIM => {}
|
2018-08-21 15:04:19 -05:00
|
|
|
}
|
2018-08-21 17:55:57 -05:00
|
|
|
|
|
|
|
match 0u128 { //~ ERROR non-exhaustive patterns
|
|
|
|
0 ..= 4 => {}
|
|
|
|
}
|
|
|
|
|
|
|
|
match 0u128 { //~ ERROR non-exhaustive patterns
|
|
|
|
4 ..= u128::MAX => {}
|
|
|
|
}
|
2018-05-19 19:55:05 -05:00
|
|
|
}
|