aboutsummaryrefslogtreecommitdiffhomepage
path: root/pretyping/constr_matching.ml
diff options
context:
space:
mode:
authorGravatar Matthieu Sozeau <mattam@mattam.org>2015-10-14 16:39:09 +0200
committerGravatar Matthieu Sozeau <mattam@mattam.org>2015-10-14 17:06:49 +0200
commitb8c681338cad546c397a1803c55183cc6526adfb (patch)
tree9eb2e8e420676e4e0a54a7cddd5475ef5cb21eca /pretyping/constr_matching.ml
parent5009be2f117a5ef27733b7d6895503af91e9aa34 (diff)
Fix constr_matching when a match is found in the head of a case construct
Diffstat (limited to 'pretyping/constr_matching.ml')
-rw-r--r--pretyping/constr_matching.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/pretyping/constr_matching.ml b/pretyping/constr_matching.ml
index 19c85c9e2..121ab7488 100644
--- a/pretyping/constr_matching.ml
+++ b/pretyping/constr_matching.ml
@@ -415,8 +415,8 @@ let sub_match ?(partial_app=false) ?(closed=true) env sigma pat c =
try_aux sub mk_ctx next
| Case (ci,hd,c1,lc) ->
let next_mk_ctx = function
- | [] -> assert false
- | c1 :: lc -> mk_ctx (mkCase (ci,hd,c1,Array.of_list lc))
+ | c1 :: hd :: lc -> mk_ctx (mkCase (ci,hd,c1,Array.of_list lc))
+ | _ -> assert false
in
let sub = (env, c1) :: (env, hd) :: subargs env lc in
try_aux sub next_mk_ctx next