We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33e196d commit 10a5c93Copy full SHA for 10a5c93
src/librustc/ty/sty.rs
@@ -2331,7 +2331,7 @@ impl<'tcx> Const<'tcx> {
2331
param_env: ParamEnv<'tcx>,
2332
) -> &Const<'tcx> {
2333
let try_const_eval = |did, param_env: ParamEnv<'tcx>, substs| {
2334
- let param_env_and_substs = param_env.with_reveal_all_normalized().and(substs);
+ let param_env_and_substs = param_env.with_reveal_all_normalized(tcx).and(substs);
2335
2336
// Avoid querying `tcx.const_eval(...)` with any e.g. inference vars.
2337
if param_env_and_substs.has_local_value() {
0 commit comments