From fcd6f284a1d10f8b021b0aec90231f22cff20fbe Mon Sep 17 00:00:00 2001 From: Jonathan Brouwer Date: Sat, 30 Aug 2025 13:44:13 +0200 Subject: [PATCH] Remove incorrect FIXME --- compiler/rustc_attr_parsing/src/attributes/deprecation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/rustc_attr_parsing/src/attributes/deprecation.rs b/compiler/rustc_attr_parsing/src/attributes/deprecation.rs index 31c698228ef4..f96477e28cd0 100644 --- a/compiler/rustc_attr_parsing/src/attributes/deprecation.rs +++ b/compiler/rustc_attr_parsing/src/attributes/deprecation.rs @@ -58,7 +58,7 @@ impl SingleAttributeParser for DeprecationParser { Allow(Target::AssocTy), Allow(Target::AssocConst), Allow(Target::Variant), - Allow(Target::Impl { of_trait: false }), //FIXME This does not make sense + Allow(Target::Impl { of_trait: false }), Allow(Target::Crate), Error(Target::WherePredicate), ]);