Skip to content

Commit 19857da

Browse files
Structurally resolve before builtin_index in EUV
1 parent 1af490d commit 19857da

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

compiler/rustc_hir_typeck/src/expr_use_visitor.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1741,7 +1741,7 @@ impl<'tcx, Cx: TypeInformationCtxt<'tcx>, D: Delegate<'tcx>> ExprUseVisitor<'tcx
17411741
}
17421742

17431743
PatKind::Slice(before, ref slice, after) => {
1744-
let Some(element_ty) = place_with_id.place.ty().builtin_index() else {
1744+
let Some(element_ty) = self.cx.try_structurally_resolve_type(pat.span, place_with_id.place.ty()).builtin_index() else {
17451745
debug!("explicit index of non-indexable type {:?}", place_with_id);
17461746
return Err(self
17471747
.cx
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
//@ compile-flags: -Znext-solver
2+
//@ check-pass
3+
4+
// Fixes a regression in `rustc_attr` where we weren't normalizing the
5+
// output type of a index operator performing a `Ty::builtin_index` call,
6+
// leading to an ICE.
7+
8+
fn main() {
9+
let mut vec = [1, 2, 3];
10+
let x = || {
11+
let [..] = &vec[..] else {
12+
return;
13+
};
14+
};
15+
}

0 commit comments

Comments
 (0)