rust/src/test/ui/issue-30302.stderr

27 lines
825 B
Plaintext
Raw Normal View History

warning[E0170]: pattern binding `Nil` is named the same as one of the variants of the type `Stack`
--> $DIR/issue-30302.rs:23:9
|
2018-02-22 18:42:32 -06:00
LL | Nil => true,
| ^^^
|
= help: if you meant to match on a variant, consider making the path in the pattern qualified: `Stack::Nil`
error: unreachable pattern
--> $DIR/issue-30302.rs:25:9
|
2018-02-22 18:42:32 -06:00
LL | Nil => true,
2017-12-19 21:53:39 -06:00
| --- matches any value
2018-02-24 17:01:39 -06:00
LL | //~^ WARN pattern binding `Nil` is named the same as one of the variants of the type `Stack`
2018-02-22 18:42:32 -06:00
LL | _ => false
2017-12-19 21:53:39 -06:00
| ^ unreachable pattern
|
note: lint level defined here
--> $DIR/issue-30302.rs:14:9
|
2018-02-22 18:42:32 -06:00
LL | #![deny(unreachable_patterns)]
| ^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0170`.