rust/tests/ui/pattern/usefulness/match-byte-array-patterns.stderr

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

73 lines
2.2 KiB
Plaintext
Raw Normal View History

2018-08-08 14:28:26 +02:00
error: unreachable pattern
2019-12-30 01:23:42 +01:00
--> $DIR/match-byte-array-patterns.rs:8:9
2018-08-08 14:28:26 +02:00
|
LL | b"AAAA" => {},
| ------- matches all the relevant values
2019-03-09 15:03:44 +03:00
LL | &[0x41, 0x41, 0x41, 0x41] => {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^ no value can reach this
2018-08-08 14:28:26 +02:00
|
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
2019-12-30 01:23:42 +01:00
--> $DIR/match-byte-array-patterns.rs:1:9
2018-08-08 14:28:26 +02:00
|
LL | #![deny(unreachable_patterns)]
| ^^^^^^^^^^^^^^^^^^^^
error: unreachable pattern
2019-12-30 01:23:42 +01:00
--> $DIR/match-byte-array-patterns.rs:14:9
2018-08-08 14:28:26 +02:00
|
LL | &[0x41, 0x41, 0x41, 0x41] => {}
| ------------------------- matches all the relevant values
2019-03-09 15:03:44 +03:00
LL | b"AAAA" => {},
| ^^^^^^^ no value can reach this
2018-08-08 14:28:26 +02:00
error: unreachable pattern
2019-12-30 01:23:42 +01:00
--> $DIR/match-byte-array-patterns.rs:20:9
2018-08-08 14:28:26 +02:00
|
LL | &[_, 0x41, 0x41, 0x41] => {},
| ---------------------- matches all the relevant values
2019-03-09 15:03:44 +03:00
LL | b"AAAA" => {},
| ^^^^^^^ no value can reach this
2018-08-08 14:28:26 +02:00
error: unreachable pattern
2019-12-30 01:23:42 +01:00
--> $DIR/match-byte-array-patterns.rs:26:9
2018-08-08 14:28:26 +02:00
|
LL | &[0x41, .., 0x41] => {}
| ----------------- matches all the relevant values
2019-03-09 15:03:44 +03:00
LL | b"AAAA" => {},
| ^^^^^^^ no value can reach this
2018-08-08 14:28:26 +02:00
error: unreachable pattern
2019-12-30 01:23:42 +01:00
--> $DIR/match-byte-array-patterns.rs:34:9
2018-08-08 14:28:26 +02:00
|
LL | b"AAAA" => {},
| ------- matches all the relevant values
2019-03-09 15:03:44 +03:00
LL | &[0x41, 0x41, 0x41, 0x41] => {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^ no value can reach this
2018-08-08 14:28:26 +02:00
error: unreachable pattern
2019-12-30 01:23:42 +01:00
--> $DIR/match-byte-array-patterns.rs:40:9
2018-08-08 14:28:26 +02:00
|
LL | &[0x41, 0x41, 0x41, 0x41] => {}
| ------------------------- matches all the relevant values
2019-03-09 15:03:44 +03:00
LL | b"AAAA" => {},
| ^^^^^^^ no value can reach this
2018-08-08 14:28:26 +02:00
error: unreachable pattern
2019-12-30 01:23:42 +01:00
--> $DIR/match-byte-array-patterns.rs:46:9
2018-08-08 14:28:26 +02:00
|
LL | &[_, 0x41, 0x41, 0x41] => {},
| ---------------------- matches all the relevant values
2019-03-09 15:03:44 +03:00
LL | b"AAAA" => {},
| ^^^^^^^ no value can reach this
2018-08-08 14:28:26 +02:00
error: unreachable pattern
2019-12-30 01:23:42 +01:00
--> $DIR/match-byte-array-patterns.rs:52:9
2018-08-08 14:28:26 +02:00
|
LL | &[0x41, .., 0x41] => {}
| ----------------- matches all the relevant values
2019-03-09 15:03:44 +03:00
LL | b"AAAA" => {},
| ^^^^^^^ no value can reach this
2018-08-08 14:28:26 +02:00
error: aborting due to 8 previous errors