]> matita.cs.unibo.it Git - helm.git/commitdiff
off by one in calling count_from
authorEnrico Tassi <enrico.tassi@inria.fr>
Mon, 7 Apr 2008 10:54:41 +0000 (10:54 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Mon, 7 Apr 2008 10:54:41 +0000 (10:54 +0000)
helm/software/components/ng_kernel/nCicTypeChecker.ml

index f96a6f31782d3eb44f1743e9120bf02daff2fb83..19db6c5a3449f43764b9ceed5beea4d4a216d15a 100644 (file)
@@ -1235,7 +1235,7 @@ and check_obj_well_typed (uri,height,metasenv,subst,kind) =
               function [] -> [] | v::tl -> (k,v)::enum_from (k+1) tl 
             in
             guarded_by_destructors 
-             ~subst ~metasenv context (enum_from (x+1) kl) m
+             ~subst ~metasenv context (enum_from (x+2) kl) m
           end else
            match returns_a_coinductive ~subst [] ty with
             | None ->