27 lines
652 B
Plaintext
27 lines
652 B
Plaintext
error: unreachable pattern
|
|
--> $DIR/match-arm-statics.rs:25:9
|
|
|
|
|
LL | (true, true) => ()
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/match-arm-statics.rs:2:9
|
|
|
|
|
LL | #![deny(unreachable_patterns)]
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/match-arm-statics.rs:40:9
|
|
|
|
|
LL | Some(Some(East)) => (),
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/match-arm-statics.rs:60:9
|
|
|
|
|
LL | Foo { bar: Some(EAST), baz: NewBool(false) } => ()
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|