about summary refs log tree commit diff
diff options
context:
space:
mode:
authorlapla-cogito <me@lapla.dev>2024-12-24 18:44:34 +0900
committerlapla-cogito <me@lapla.dev>2024-12-24 18:44:34 +0900
commit71f1a8702d859dce1b85a021105132962a593d42 (patch)
treebbdf87da638b6621eaef6b9df47d0c61f76faab2
parent988042e0b2c806352cb3e6583a2e093d3ee086fa (diff)
downloadrust-71f1a8702d859dce1b85a021105132962a593d42.tar.gz
rust-71f1a8702d859dce1b85a021105132962a593d42.zip
remove known problems section from match_same_arms
-rw-r--r--clippy_lints/src/matches/mod.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/clippy_lints/src/matches/mod.rs b/clippy_lints/src/matches/mod.rs
index 1fd2ebcb54a..ac1eae07eff 100644
--- a/clippy_lints/src/matches/mod.rs
+++ b/clippy_lints/src/matches/mod.rs
@@ -583,11 +583,6 @@ declare_clippy_lint! {
     /// are the same on purpose, you can factor them
     /// [using `|`](https://doc.rust-lang.org/book/patterns.html#multiple-patterns).
     ///
-    /// ### Known problems
-    /// False positive possible with order dependent `match`
-    /// (see issue
-    /// [#860](https://github.com/rust-lang/rust-clippy/issues/860)).
-    ///
     /// ### Example
     /// ```rust,ignore
     /// match foo {