rust/src/test/ui/match/match-byte-array-patterns.stderr
Vadim Petrochenkov fa72a81bea Update tests
2019-03-11 23:10:26 +03:00

56 lines
1.3 KiB
Text

error: unreachable pattern
--> $DIR/match-byte-array-patterns.rs:9:9
|
LL | &[0x41, 0x41, 0x41, 0x41] => {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
note: lint level defined here
--> $DIR/match-byte-array-patterns.rs:2:9
|
LL | #![deny(unreachable_patterns)]
| ^^^^^^^^^^^^^^^^^^^^
error: unreachable pattern
--> $DIR/match-byte-array-patterns.rs:15:9
|
LL | b"AAAA" => {},
| ^^^^^^^
error: unreachable pattern
--> $DIR/match-byte-array-patterns.rs:21:9
|
LL | b"AAAA" => {},
| ^^^^^^^
error: unreachable pattern
--> $DIR/match-byte-array-patterns.rs:27:9
|
LL | b"AAAA" => {},
| ^^^^^^^
error: unreachable pattern
--> $DIR/match-byte-array-patterns.rs:35:9
|
LL | &[0x41, 0x41, 0x41, 0x41] => {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error: unreachable pattern
--> $DIR/match-byte-array-patterns.rs:41:9
|
LL | b"AAAA" => {},
| ^^^^^^^
error: unreachable pattern
--> $DIR/match-byte-array-patterns.rs:47:9
|
LL | b"AAAA" => {},
| ^^^^^^^
error: unreachable pattern
--> $DIR/match-byte-array-patterns.rs:53:9
|
LL | b"AAAA" => {},
| ^^^^^^^
error: aborting due to 8 previous errors