Skip to content

Commit 47147a6

Browse files
authored
Unrolled build for rust-lang#129208
Rollup merge of rust-lang#129208 - veluca93:adt_const_fix, r=BoxyUwU Fix order of normalization and recursion in const folding. Fixes rust-lang#126831. Without this patch, type normalization is not always idempotent, which leads to all sorts of bugs in places that assume that normalizing a normalized type does nothing. Tracking issue: rust-lang#95174 r? BoxyUwU
2 parents 804be74 + 7fd6232 commit 47147a6

File tree

2 files changed

+29
-4
lines changed

2 files changed

+29
-4
lines changed

compiler/rustc_trait_selection/src/traits/query/normalize.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -333,14 +333,14 @@ impl<'cx, 'tcx> FallibleTypeFolder<TyCtxt<'tcx>> for QueryNormalizer<'cx, 'tcx>
333333
return Ok(constant);
334334
}
335335

336-
let constant = constant.try_super_fold_with(self)?;
337-
debug!(?constant, ?self.param_env);
338-
Ok(crate::traits::with_replaced_escaping_bound_vars(
336+
let constant = crate::traits::with_replaced_escaping_bound_vars(
339337
self.infcx,
340338
&mut self.universes,
341339
constant,
342340
|constant| constant.normalize(self.infcx.tcx, self.param_env),
343-
))
341+
);
342+
debug!(?constant, ?self.param_env);
343+
constant.try_super_fold_with(self)
344344
}
345345

346346
#[inline]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
//@ compile-flags: -Cdebuginfo=2 --crate-type=lib
2+
//@ build-pass
3+
#![feature(adt_const_params)]
4+
5+
const N_ISLANDS: usize = 4;
6+
7+
pub type Matrix = [[usize; N_ISLANDS]; N_ISLANDS];
8+
9+
const EMPTY_MATRIX: Matrix = [[0; N_ISLANDS]; N_ISLANDS];
10+
11+
const fn to_matrix() -> Matrix {
12+
EMPTY_MATRIX
13+
}
14+
15+
const BRIDGE_MATRIX: [[usize; N_ISLANDS]; N_ISLANDS] = to_matrix();
16+
17+
pub struct Walk<const CURRENT: usize, const REMAINING: Matrix> {
18+
_p: (),
19+
}
20+
21+
impl Walk<0, BRIDGE_MATRIX> {
22+
pub const fn new() -> Self {
23+
Self { _p: () }
24+
}
25+
}

0 commit comments

Comments
 (0)