]> git.lizzy.rs Git - rust.git/commitdiff
Add known problems
authorManish Goregaokar <manishsmail@gmail.com>
Thu, 16 May 2019 16:43:07 +0000 (09:43 -0700)
committerManish Goregaokar <manishsmail@gmail.com>
Thu, 16 May 2019 16:43:07 +0000 (09:43 -0700)
clippy_lints/src/eta_reduction.rs

index b955b0f2aa5e54e4e5d37ccfc1d3269956ac9053..4a93101d7cb9fad7a73e8168494d0e0cb844606b 100644 (file)
     ///
     /// **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());