Skip to content

Commit 8a5843f

Browse files
authored
Rollup merge of #108202 - compiler-errors:non_lifetime_binders-type-match-ice, r=davidtwco
Make sure `test_type_match` doesn't ICE with late-bound types Fixes #108190 (in a kind of hacky way, anyways doesn't really matter)
2 parents 314fe4d + c13d5f1 commit 8a5843f

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

compiler/rustc_infer/src/infer/outlives/test_type_match.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,8 @@ impl<'tcx> TypeRelation<'tcx> for Match<'tcx> {
186186

187187
#[instrument(skip(self), level = "debug")]
188188
fn tys(&mut self, pattern: Ty<'tcx>, value: Ty<'tcx>) -> RelateResult<'tcx, Ty<'tcx>> {
189-
if let ty::Error(_) = pattern.kind() {
189+
// FIXME(non_lifetime_binders): What to do here?
190+
if matches!(pattern.kind(), ty::Error(_) | ty::Bound(..)) {
190191
// Unlike normal `TypeRelation` rules, `ty::Error` does not equal any type.
191192
self.no_match()
192193
} else if pattern == value {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// edition:2021
2+
// check-pass
3+
4+
// Checks that test_type_match code doesn't ICE when predicates have late-bound types
5+
6+
#![feature(non_lifetime_binders)]
7+
//~^ WARN is incomplete and may not be safe to use
8+
9+
async fn walk2<'a, T: 'a>(_: T)
10+
where
11+
for<F> F: 'a,
12+
{}
13+
14+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
warning: the feature `non_lifetime_binders` is incomplete and may not be safe to use and/or cause compiler crashes
2+
--> $DIR/type-match-with-late-bound.rs:6:12
3+
|
4+
LL | #![feature(non_lifetime_binders)]
5+
| ^^^^^^^^^^^^^^^^^^^^
6+
|
7+
= note: see issue #108185 <https://github.com/rust-lang/rust/issues/108185> for more information
8+
= note: `#[warn(incomplete_features)]` on by default
9+
10+
warning: 1 warning emitted
11+

0 commit comments

Comments
 (0)