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 08:56:47 -07:00
--> $DIR/issue-30302.rs:13:9
|
2018-02-23 03:42:32 +03: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 08:56:47 -07:00
--> $DIR/issue-30302.rs:15:9
|
2018-02-23 03:42:32 +03:00
LL | Nil => true,
2017-12-19 19:53:39 -08:00
| --- matches any value
2019-03-09 15:03:44 +03:00
LL |
2018-02-23 03:42:32 +03:00
LL | _ => false
2017-12-19 19:53:39 -08:00
| ^ unreachable pattern
|
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
2018-12-25 08:56:47 -07:00
--> $DIR/issue-30302.rs:4:9
|
2018-02-23 03:42:32 +03:00
LL | #![deny(unreachable_patterns)]
| ^^^^^^^^^^^^^^^^^^^^
error: aborting due to 2 previous errors
2018-03-03 15:59:40 +01:00
For more information about this error, try `rustc --explain E0170`.