Link to known issues for MATCH_SAME_ARMS

This commit is contained in:
mcarton 2016-07-10 14:53:42 +02:00
parent b8b6b7fee6
commit efaed2ecfe
No known key found for this signature in database
GPG Key ID: 5E427C794CBA45E8

View File

@ -42,7 +42,8 @@ declare_lint! {
/// purpose, you can factor them
/// [using `|`](https://doc.rust-lang.org/book/patterns.html#multiple-patterns).
///
/// **Known problems:** Hopefully none.
/// **Known problems:** False positive possible with order dependent `match`
/// (see issue [#860](https://github.com/Manishearth/rust-clippy/issues/860)).
///
/// **Example:**
/// ```rust,ignore