Skip to content

Commit

Permalink
Fix cbv evar case
Browse files Browse the repository at this point in the history
  • Loading branch information
Yann Leray committed Oct 22, 2023
1 parent f202dcb commit 2eb92b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pretyping/cbv.ml
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ let rec reify_stack t = function
reify_stack (mkApp(t,Array.map_of_list reify_value args)) st
| CASE (u,pms,ty,br,iv,ci,env,st) ->
reify_stack
(mkCase (ci, u, pms, ty, iv, t,br))
(apply_env env @@ mkCase (ci, u, pms, ty, iv, t,br))
st
| PROJ (p, st) ->
reify_stack (mkProj (p, t)) st
Expand Down

0 comments on commit 2eb92b2

Please sign in to comment.