Fixed bug in check_mode_clause.
authorberghofe
Wed, 14 Apr 2004 11:44:57 +0200
changeset 14560 529464cffbfe
parent 14559 7612d19d5638
child 14561 c53396af770e
Fixed bug in check_mode_clause.
src/HOL/Tools/inductive_codegen.ML
--- a/src/HOL/Tools/inductive_codegen.ML	Wed Apr 14 10:08:28 2004 +0200
+++ b/src/HOL/Tools/inductive_codegen.ML	Wed Apr 14 11:44:57 2004 +0200
@@ -231,7 +231,7 @@
     val in_vs = terms_vs in_ts;
     val concl_vs = terms_vs ts
   in
-    forall is_eqT (map snd (duplicates (flat (map term_vTs in_ts')))) andalso
+    forall is_eqT (map snd (duplicates (flat (map term_vTs in_ts)))) andalso
     (case check_mode_prems (arg_vs union in_vs) ps of
        None => false
      | Some vs => concl_vs subset vs)