Auto merge of #146029 - JonathanBrouwer:incorrect-fixme, r=jdonszelmann

Remove incorrect fixme on deprecation target

This does actually working suprisingly enough, applying deprecation to all methods in the impl block

r? `@jdonszelmann`
This commit is contained in:
bors 2025-08-30 18:04:07 +00:00
commit 523d3999dc

View file

@ -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),
]);