Skip to content

Commit b57fe74

Browse files
committed
Auto merge of #58649 - pnkfelix:issue-57464-avoid-ice-when-region-sneaks-into-impl-trait, r=pnkfelix
avoid ICE when region sneaks into impl trait Addresses non-NLL instances of #57464
2 parents da57320 + 4f89846 commit b57fe74

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/librustc/infer/canonical/canonicalizer.rs

+10-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,16 @@ impl CanonicalizeRegionMode for CanonicalizeQueryResponse {
191191
// response should be executing in a fully
192192
// canonicalized environment, so there shouldn't be
193193
// any other region names it can come up.
194-
bug!("unexpected region in query response: `{:?}`", r)
194+
//
195+
// rust-lang/rust#57464: `impl Trait` can leak local
196+
// scopes (in manner violating typeck). Therefore, use
197+
// `delay_span_bug` to allow type error over an ICE.
198+
ty::tls::with_context(|c| {
199+
c.tcx.sess.delay_span_bug(
200+
syntax_pos::DUMMY_SP,
201+
&format!("unexpected region in query response: `{:?}`", r));
202+
});
203+
r
195204
}
196205
}
197206
}

0 commit comments

Comments
 (0)