mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-28 20:16:58 +03:00
expand: Leave traces when expanding cfg_attr attributes
This commit is contained in:
@@ -36,7 +36,11 @@ fn check_duplicated_attr(
|
||||
}
|
||||
let Some(ident) = attr.ident() else { return };
|
||||
let name = ident.name;
|
||||
if name == sym::doc || name == sym::cfg_attr || name == sym::rustc_on_unimplemented || name == sym::reason {
|
||||
if name == sym::doc
|
||||
|| name == sym::cfg_attr
|
||||
|| name == sym::cfg_attr_trace
|
||||
|| name == sym::rustc_on_unimplemented
|
||||
|| name == sym::reason {
|
||||
// FIXME: Would be nice to handle `cfg_attr` as well. Only problem is to check that cfg
|
||||
// conditions are the same.
|
||||
// `#[rustc_on_unimplemented]` contains duplicated subattributes, that's expected.
|
||||
|
||||
Reference in New Issue
Block a user