Skip to content

Commit 10a5c93

Browse files
committed
Fix rebase fallout
1 parent 33e196d commit 10a5c93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc/ty/sty.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2331,7 +2331,7 @@ impl<'tcx> Const<'tcx> {
23312331
param_env: ParamEnv<'tcx>,
23322332
) -> &Const<'tcx> {
23332333
let try_const_eval = |did, param_env: ParamEnv<'tcx>, substs| {
2334-
let param_env_and_substs = param_env.with_reveal_all_normalized().and(substs);
2334+
let param_env_and_substs = param_env.with_reveal_all_normalized(tcx).and(substs);
23352335

23362336
// Avoid querying `tcx.const_eval(...)` with any e.g. inference vars.
23372337
if param_env_and_substs.has_local_value() {

0 commit comments

Comments
 (0)