extend attrs if local_def_id exists
This commit is contained in:
parent
9845f4c47e
commit
aa76e135ff
@ -41,8 +41,9 @@ fn fold_item(&mut self, mut item: Item) -> Option<Item> {
|
||||
if self.parent != Some(expected_parent) {
|
||||
let mut attrs = Vec::new();
|
||||
for (parent_hir_id, _) in hir.parent_iter(hir_id) {
|
||||
let def_id = hir.local_def_id(parent_hir_id).to_def_id();
|
||||
attrs.extend_from_slice(load_attrs(self.cx, def_id));
|
||||
if let Some(def_id) = hir.opt_local_def_id(parent_hir_id) {
|
||||
attrs.extend_from_slice(load_attrs(self.cx, def_id.to_def_id()));
|
||||
}
|
||||
}
|
||||
let (_, cfg) =
|
||||
merge_attrs(self.cx, None, item.attrs.other_attrs.as_slice(), Some(&attrs));
|
||||
|
14
src/test/rustdoc-ui/issue-101076.rs
Normal file
14
src/test/rustdoc-ui/issue-101076.rs
Normal file
@ -0,0 +1,14 @@
|
||||
// check-pass
|
||||
|
||||
const _: () = {
|
||||
#[macro_export]
|
||||
macro_rules! first_macro {
|
||||
() => {}
|
||||
}
|
||||
mod foo {
|
||||
#[macro_export]
|
||||
macro_rules! second_macro {
|
||||
() => {}
|
||||
}
|
||||
}
|
||||
};
|
Loading…
Reference in New Issue
Block a user