about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2019-05-16 09:43:07 -0700
committerManish Goregaokar <manishsmail@gmail.com>2019-05-16 09:43:07 -0700
commitce63f3ae4d570f0b29dd965389ac2a857426914b (patch)
tree3f358d526e032a65fbf785abde002883cf6f0460
parent373d270673c7f68a29a4d31e4b54625a49738810 (diff)
downloadrust-ce63f3ae4d570f0b29dd965389ac2a857426914b.tar.gz
rust-ce63f3ae4d570f0b29dd965389ac2a857426914b.zip
Add known problems
-rw-r--r--clippy_lints/src/eta_reduction.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/clippy_lints/src/eta_reduction.rs b/clippy_lints/src/eta_reduction.rs
index b955b0f2aa5..4a93101d7cb 100644
--- a/clippy_lints/src/eta_reduction.rs
+++ b/clippy_lints/src/eta_reduction.rs
@@ -38,6 +38,10 @@ declare_clippy_lint! {
     ///
     /// **Why is this bad?** It's unnecessary to create the closure.
     ///
+    /// **Known problems:** rust-lang/rust-clippy#3071, rust-lang/rust-clippy#4002,
+    /// rust-lang/rust-clippy#3942
+    ///
+    ///
     /// **Example:**
     /// ```rust,ignore
     /// Some('a').map(|s| s.to_uppercase());