rust/tests/ui/lint/issue-30302.stderr

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

27 lines
753 B
Plaintext
Raw Normal View History

error[E0170]: pattern binding `Nil` is named the same as one of the variants of the type `Stack`
2018-12-25 09:56:47 -06:00
--> $DIR/issue-30302.rs:13:9
|
2018-02-22 18:42:32 -06:00
LL | Nil => true,
| ^^^ help: to match on the variant, qualify the path: `Stack::Nil`
|
= note: `#[deny(bindings_with_variant_name)]` on by default
error: unreachable pattern
2018-12-25 09:56:47 -06:00
--> $DIR/issue-30302.rs:15:9
|
2018-02-22 18:42:32 -06:00
LL | Nil => true,
2017-12-19 21:53:39 -06:00
| --- matches any value
2019-03-09 06:03:44 -06:00
LL |
2018-02-22 18:42:32 -06:00
LL | _ => false
2017-12-19 21:53:39 -06:00
| ^ unreachable pattern
|
2020-01-22 17:57:38 -06:00
note: the lint level is defined here
2018-12-25 09:56:47 -06:00
--> $DIR/issue-30302.rs:4:9
|
2018-02-22 18:42:32 -06:00
LL | #![deny(unreachable_patterns)]
| ^^^^^^^^^^^^^^^^^^^^
error: aborting due to 2 previous errors
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0170`.