Skip to content

Commit 7fd2d8d

Browse files
committed
Do not run check on foreign items.
1 parent 76d616d commit 7fd2d8d

File tree

1 file changed

+1
-1
lines changed
  • compiler/rustc_hir_analysis/src/collect/type_of

1 file changed

+1
-1
lines changed

compiler/rustc_hir_analysis/src/collect/type_of/opaque.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ impl<'tcx> intravisit::Visitor<'tcx> for TaitConstraintLocator<'tcx> {
244244
fn visit_foreign_item(&mut self, it: &'tcx hir::ForeignItem<'tcx>) {
245245
trace!(?it.owner_id);
246246
assert_ne!(it.owner_id.def_id, self.def_id);
247-
self.check(it.owner_id.def_id);
247+
// No need to call `check`, as we do not run borrowck on foreign items.
248248
intravisit::walk_foreign_item(self, it);
249249
}
250250
}

0 commit comments

Comments
 (0)