From 8b5187f7ea5863908a459fd92c77096ab1bc4538 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20Sinan=20A=C4=9Facan?= Date: Sat, 30 Jan 2021 22:39:52 +0300 Subject: [PATCH] Fix an old FIXME in redundant paren lint Referenced bug was fixed a while ago --- compiler/rustc_lint/src/unused.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/compiler/rustc_lint/src/unused.rs b/compiler/rustc_lint/src/unused.rs index c1a3eecbbc7..b611aebad01 100644 --- a/compiler/rustc_lint/src/unused.rs +++ b/compiler/rustc_lint/src/unused.rs @@ -977,8 +977,6 @@ impl UnusedDelimLint for UnusedBraces { } } ast::ExprKind::Let(_, ref expr) => { - // FIXME(#60336): Properly handle `let true = (false && true)` - // actually needing the parenthesis. self.check_unused_delims_expr( cx, expr,