diff --git a/clippy_lints/src/copies.rs b/clippy_lints/src/copies.rs index fc0d829172fa..504515be88c6 100644 --- a/clippy_lints/src/copies.rs +++ b/clippy_lints/src/copies.rs @@ -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