wildcard_match_arm: add nesting issue to known.

This commit is contained in:
Alex Hamilton 2019-01-29 14:34:04 -06:00
parent efaed8e0c0
commit 587492b5d2

View file

@ -191,7 +191,7 @@ declare_clippy_lint! {
///
/// **Why is this bad?** New enum variants added by library updates can be missed.
///
/// **Known problems:** None.
/// **Known problems:** Nested wildcards a la `Foo(_)` are currently not detected.
///
/// **Example:**
/// ```rust