2019-01-13 08:23:32 -06:00
|
|
|
error: unreachable pattern
|
|
|
|
--> $DIR/issue-57472.rs:15:13
|
|
|
|
|
|
|
|
|
LL | Punned { bar: [_], .. } => println!("bar"),
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-01-22 17:57:38 -06:00
|
|
|
note: the lint level is defined here
|
2019-01-13 08:23:32 -06:00
|
|
|
--> $DIR/issue-57472.rs:2:9
|
|
|
|
|
|
|
|
|
LL | #![deny(unreachable_patterns)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: unreachable pattern
|
|
|
|
--> $DIR/issue-57472.rs:31:13
|
|
|
|
|
|
|
|
|
LL | Punned { bar: [_] } => println!("bar"),
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|