about summary refs log tree commit diff
path: root/compiler/rustc_attr_parsing
diff options
context:
space:
mode:
authorJonathan Brouwer <jonathantbrouwer@gmail.com>2025-08-30 13:44:13 +0200
committerJonathan Brouwer <jonathantbrouwer@gmail.com>2025-08-30 13:44:13 +0200
commitfcd6f284a1d10f8b021b0aec90231f22cff20fbe (patch)
tree8c0437a64e7aa1e4bd314f68ffd6fa1310516c57 /compiler/rustc_attr_parsing
parent846e377215c5985b3a0fe7af6bb71bdc45912aae (diff)
downloadrust-fcd6f284a1d10f8b021b0aec90231f22cff20fbe.tar.gz
rust-fcd6f284a1d10f8b021b0aec90231f22cff20fbe.zip
Remove incorrect FIXME
Diffstat (limited to 'compiler/rustc_attr_parsing')
-rw-r--r--compiler/rustc_attr_parsing/src/attributes/deprecation.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_attr_parsing/src/attributes/deprecation.rs b/compiler/rustc_attr_parsing/src/attributes/deprecation.rs
index 31c698228ef..f96477e28cd 100644
--- a/compiler/rustc_attr_parsing/src/attributes/deprecation.rs
+++ b/compiler/rustc_attr_parsing/src/attributes/deprecation.rs
@@ -58,7 +58,7 @@ impl<S: Stage> SingleAttributeParser<S> 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),
     ]);