Ensure we don't feed owners from ast lowering if we ever make that query tracked

This commit is contained in:
Oli Scherer
2026-04-20 19:44:10 +02:00
parent 84c1190072
commit b1c7595965
+1
View File
@@ -700,6 +700,7 @@ pub fn feed_anon_const_type(self, key: LocalDefId, value: ty::EarlyBinder<'tcx,
/// Feeds the HIR delayed owner during AST -> HIR delayed lowering.
pub fn feed_delayed_owner(self, key: LocalDefId, owner: MaybeOwner<'tcx>) {
self.dep_graph.assert_ignored();
TyCtxtFeed { tcx: self, key }.delayed_owner(owner);
}
}