mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-14 07:53:24 +00:00
Avoid accessing HIR for RPITITs assoc type on mark_live_symbols
This commit is contained in:
parent
34ca2dc091
commit
b1efed4b64
@ -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…
Reference in New Issue
Block a user