summaryrefslogtreecommitdiffstats
path: root/tests/ui/pattern/usefulness/match-byte-array-patterns.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/pattern/usefulness/match-byte-array-patterns.rs')
-rw-r--r--tests/ui/pattern/usefulness/match-byte-array-patterns.rs55
1 files changed, 55 insertions, 0 deletions
diff --git a/tests/ui/pattern/usefulness/match-byte-array-patterns.rs b/tests/ui/pattern/usefulness/match-byte-array-patterns.rs
new file mode 100644
index 000000000..9b6c8bd55
--- /dev/null
+++ b/tests/ui/pattern/usefulness/match-byte-array-patterns.rs
@@ -0,0 +1,55 @@
+#![deny(unreachable_patterns)]
+
+fn main() {
+ let buf = &[0, 1, 2, 3];
+
+ match buf {
+ b"AAAA" => {},
+ &[0x41, 0x41, 0x41, 0x41] => {} //~ ERROR unreachable pattern
+ _ => {}
+ }
+
+ match buf {
+ &[0x41, 0x41, 0x41, 0x41] => {}
+ b"AAAA" => {}, //~ ERROR unreachable pattern
+ _ => {}
+ }
+
+ match buf {
+ &[_, 0x41, 0x41, 0x41] => {},
+ b"AAAA" => {}, //~ ERROR unreachable pattern
+ _ => {}
+ }
+
+ match buf {
+ &[0x41, .., 0x41] => {}
+ b"AAAA" => {}, //~ ERROR unreachable pattern
+ _ => {}
+ }
+
+ let buf: &[u8] = buf;
+
+ match buf {
+ b"AAAA" => {},
+ &[0x41, 0x41, 0x41, 0x41] => {} //~ ERROR unreachable pattern
+ _ => {}
+ }
+
+ match buf {
+ &[0x41, 0x41, 0x41, 0x41] => {}
+ b"AAAA" => {}, //~ ERROR unreachable pattern
+ _ => {}
+ }
+
+ match buf {
+ &[_, 0x41, 0x41, 0x41] => {},
+ b"AAAA" => {}, //~ ERROR unreachable pattern
+ _ => {}
+ }
+
+ match buf {
+ &[0x41, .., 0x41] => {}
+ b"AAAA" => {}, //~ ERROR unreachable pattern
+ _ => {}
+ }
+}