We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents da57320 + 4f89846 commit b57fe74Copy full SHA for b57fe74
src/librustc/infer/canonical/canonicalizer.rs
@@ -191,7 +191,16 @@ impl CanonicalizeRegionMode for CanonicalizeQueryResponse {
191
// response should be executing in a fully
192
// canonicalized environment, so there shouldn't be
193
// any other region names it can come up.
194
- bug!("unexpected region in query response: `{:?}`", r)
+ //
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
204
}
205
206
0 commit comments