We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76d616d commit 7fd2d8dCopy full SHA for 7fd2d8d
compiler/rustc_hir_analysis/src/collect/type_of/opaque.rs
@@ -244,7 +244,7 @@ impl<'tcx> intravisit::Visitor<'tcx> for TaitConstraintLocator<'tcx> {
244
fn visit_foreign_item(&mut self, it: &'tcx hir::ForeignItem<'tcx>) {
245
trace!(?it.owner_id);
246
assert_ne!(it.owner_id.def_id, self.def_id);
247
- self.check(it.owner_id.def_id);
+ // No need to call `check`, as we do not run borrowck on foreign items.
248
intravisit::walk_foreign_item(self, it);
249
}
250
0 commit comments