2018-12-13 05:54:49 -06:00
|
|
|
#![deny(unreachable_patterns)]
|
2018-11-13 07:10:47 -06:00
|
|
|
|
|
|
|
fn main() {
|
2018-11-26 02:56:39 -06:00
|
|
|
let s = &[0x00; 4][..]; //Slice of any value
|
|
|
|
const MAGIC_TEST: &[u8] = b"TEST"; //Const slice to pattern match with
|
|
|
|
match s {
|
|
|
|
MAGIC_TEST => (),
|
|
|
|
[0x00, 0x00, 0x00, 0x00] => (),
|
2018-12-13 05:54:49 -06:00
|
|
|
[84, 69, 83, 84] => (), //~ ERROR unreachable pattern
|
2018-11-29 05:58:25 -06:00
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
match s {
|
|
|
|
[0x00, 0x00, 0x00, 0x00] => (),
|
|
|
|
MAGIC_TEST => (),
|
2018-12-13 05:54:49 -06:00
|
|
|
[84, 69, 83, 84] => (), //~ ERROR unreachable pattern
|
2018-11-29 05:58:25 -06:00
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
match s {
|
|
|
|
[0x00, 0x00, 0x00, 0x00] => (),
|
|
|
|
[84, 69, 83, 84] => (),
|
2018-12-13 05:54:49 -06:00
|
|
|
MAGIC_TEST => (), //~ ERROR unreachable pattern
|
2018-11-26 02:56:39 -06:00
|
|
|
_ => (),
|
|
|
|
}
|
2018-12-07 12:06:22 -06:00
|
|
|
const FOO: [u8; 1] = [4];
|
|
|
|
match [99] {
|
|
|
|
[0x00] => (),
|
|
|
|
[4] => (),
|
2018-12-13 05:54:49 -06:00
|
|
|
FOO => (), //~ ERROR unreachable pattern
|
2018-12-07 12:06:22 -06:00
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
const BAR: &[u8; 1] = &[4];
|
|
|
|
match &[99] {
|
|
|
|
[0x00] => (),
|
|
|
|
[4] => (),
|
2018-12-13 05:54:49 -06:00
|
|
|
BAR => (), //~ ERROR unreachable pattern
|
2018-12-07 12:06:22 -06:00
|
|
|
b"a" => (),
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
|
|
|
|
const BOO: &[u8; 0] = &[];
|
|
|
|
match &[] {
|
|
|
|
[] => (),
|
2018-12-13 05:54:49 -06:00
|
|
|
BOO => (), //~ ERROR unreachable pattern
|
|
|
|
b"" => (), //~ ERROR unreachable pattern
|
|
|
|
_ => (), //~ ERROR unreachable pattern
|
2018-12-07 12:06:22 -06:00
|
|
|
}
|
2019-11-17 16:25:51 -06:00
|
|
|
|
|
|
|
const CONST1: &[bool; 1] = &[true];
|
|
|
|
match &[false] {
|
|
|
|
CONST1 => {}
|
|
|
|
[true] => {} //~ ERROR unreachable pattern
|
|
|
|
[false] => {}
|
|
|
|
}
|
2018-11-13 08:50:10 -06:00
|
|
|
}
|