Avoid accessing HIR for RPITITs assoc type on mark_live_symbols
This commit is contained in:
parent
34ca2dc091
commit
b1efed4b64
1 changed files with 6 additions and 0 deletions
|
@ -243,6 +243,12 @@ impl<'tcx> MarkSymbolVisitor<'tcx> {
|
|||
continue;
|
||||
}
|
||||
|
||||
// Avoid accessing the HIR for the synthesized associated type generated for RPITITs.
|
||||
if self.tcx.opt_rpitit_info(id).is_some() {
|
||||
self.live_symbols.insert(id);
|
||||
continue;
|
||||
}
|
||||
|
||||
// in the case of tuple struct constructors we want to check the item, not the generated
|
||||
// tuple struct constructor function
|
||||
let id = self.struct_constructors.get(&id).copied().unwrap_or(id);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue