Handle `rustc_on_unimplemented` in duplicated_attributes ```rust #[rustc_on_unimplemented( on( _Self = "&str", label = "`a" ), on( _Self = "alloc::string::String", label = "a" ), )] ``` The lint treats this as a repetition because `rustc_on_unimplemented:🔛:label` appears twice, but that's ok. Fixes #12619 changelog: [`duplicated_attributes`]: fix handling of `rustc_on_unimplemented`