rustc: Make def_kind
mandatory for all DefId
s
This commit is contained in:
parent
fad6bb80fa
commit
2c23386344
13 changed files with 36 additions and 56 deletions
|
@ -500,7 +500,7 @@ impl<'tcx> EmbargoVisitor<'tcx> {
|
|||
}
|
||||
|
||||
let macro_module_def_id = self.tcx.local_parent(local_def_id);
|
||||
if self.tcx.opt_def_kind(macro_module_def_id) != Some(DefKind::Mod) {
|
||||
if self.tcx.def_kind(macro_module_def_id) != DefKind::Mod {
|
||||
// The macro's parent doesn't correspond to a `mod`, return early (#63164, #65252).
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue