diff options
| author | Alex Hamilton <alex.hamilton@ou.edu> | 2019-01-29 14:34:04 -0600 |
|---|---|---|
| committer | Alex Hamilton <alex.hamilton@ou.edu> | 2019-01-29 15:33:04 -0600 |
| commit | 587492b5d243273f7170ee9036ca18bbedbebc77 (patch) | |
| tree | a4eb6d9199ade6068f4d4f34b2e3fcb753633eb5 | |
| parent | efaed8e0c0bc67d46a647a0ceb94b4b095ce04db (diff) | |
| download | rust-587492b5d243273f7170ee9036ca18bbedbebc77.tar.gz rust-587492b5d243273f7170ee9036ca18bbedbebc77.zip | |
wildcard_match_arm: add nesting issue to known.
| -rw-r--r-- | clippy_lints/src/matches.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/matches.rs b/clippy_lints/src/matches.rs index e0094b19998..6ef07316691 100644 --- a/clippy_lints/src/matches.rs +++ b/clippy_lints/src/matches.rs @@ -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 |
