aboutsummaryrefslogtreecommitdiff
path: root/vernac/command.ml
diff options
context:
space:
mode:
authorMaxime Dénès2017-08-29 14:45:47 +0200
committerMaxime Dénès2017-08-29 14:45:47 +0200
commit7caaf8d434499feb1c3b3c86ad1538905fc34d3f (patch)
treeb83067ea7085d119593fce282a7bf756de402825 /vernac/command.ml
parentc3bc1fda9c5dd1805b23d04f2dee711aeec1f4a1 (diff)
parent569a26809a3b5e72033aac29e9e2bc91f74f2092 (diff)
Merge PR #946: Functional pretyping interface
Diffstat (limited to 'vernac/command.ml')
-rw-r--r--vernac/command.ml5
1 files changed, 3 insertions, 2 deletions
diff --git a/vernac/command.ml b/vernac/command.ml
index e04bebe33b..a315ac14e2 100644
--- a/vernac/command.ml
+++ b/vernac/command.ml
@@ -393,8 +393,9 @@ let is_impredicative env u =
let interp_ind_arity env evdref ind =
let c = intern_gen IsType env ind.ind_arity in
- let imps = Implicit_quantifiers.implicits_of_glob_constr ~with_products:true c in
- let t, impls = understand_tcc_evars env evdref ~expected_type:IsType c, imps in
+ let impls = Implicit_quantifiers.implicits_of_glob_constr ~with_products:true c in
+ let (evd,t) = understand_tcc env !evdref ~expected_type:IsType c in
+ evdref := evd;
let pseudo_poly = check_anonymous_type c in
let () = if not (Reductionops.is_arity env !evdref t) then
user_err ?loc:(constr_loc ind.ind_arity) (str "Not an arity")