]> matita.cs.unibo.it Git - helm.git/commitdiff
New syntax for the outtype of a match.
authorClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Tue, 8 Nov 2005 09:26:47 +0000 (09:26 +0000)
committerClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Tue, 8 Nov 2005 09:26:47 +0000 (09:26 +0000)
helm/matita/tests/first.ma

index 6120d93c4b2ac12af53b95883fada8556c3ee8d6..4fca7b1999664dc66b24e92e1184cc08b681ebe2 100644 (file)
@@ -26,8 +26,7 @@ inductive list (A:Set) : Set \def
   | cons : A \to list A \to list A.
 
 let rec list_len (A:Set) (l:list A) on l \def
-  [\lambda x.nat]
-  match (l:list A) with 
+  match l with 
   [ nil \Rightarrow O
   | (cons a tl) \Rightarrow S (list_len A tl)].