We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9b8a59 commit cb6a654Copy full SHA for cb6a654
clippy_lints/src/comparison_chain.rs
@@ -12,7 +12,8 @@ declare_clippy_lint! {
12
/// **Why is this bad?** `if` is not guaranteed to be exhaustive and conditionals can get
13
/// repetitive
14
///
15
- /// **Known problems:** None.
+ /// **Known problems:** The match statement may be slower due to the compiler
16
+ /// not inlining the call to cmp. See issue #5354
17
18
/// **Example:**
19
/// ```rust,ignore
0 commit comments