about summary refs log tree commit diff
path: root/tests/ui/expr/if/bad-if-let-suggestion.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/expr/if/bad-if-let-suggestion.rs')
-rw-r--r--tests/ui/expr/if/bad-if-let-suggestion.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/ui/expr/if/bad-if-let-suggestion.rs b/tests/ui/expr/if/bad-if-let-suggestion.rs
index 99d584ac7a5..b0d0676e1ea 100644
--- a/tests/ui/expr/if/bad-if-let-suggestion.rs
+++ b/tests/ui/expr/if/bad-if-let-suggestion.rs
@@ -1,6 +1,3 @@
-// FIXME(compiler-errors): This really should suggest `let` on the RHS of the
-// `&&` operator, but that's kinda hard to do because of precedence.
-// Instead, for now we just make sure not to suggest `if let let`.
 fn a() {
     if let x = 1 && i = 2 {}
     //~^ ERROR cannot find value `i` in this scope