]> matita.cs.unibo.it Git - helm.git/commitdiff
error
authorEnrico Tassi <enrico.tassi@inria.fr>
Mon, 13 Jun 2005 12:20:06 +0000 (12:20 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Mon, 13 Jun 2005 12:20:06 +0000 (12:20 +0000)
helm/matita/tests/temperino.ma [new file with mode: 0644]

diff --git a/helm/matita/tests/temperino.ma b/helm/matita/tests/temperino.ma
new file mode 100644 (file)
index 0000000..0edc799
--- /dev/null
@@ -0,0 +1,33 @@
+%% test per temperino.lang
+
+%% commento
+(* commento *)
+(** hint. **)
+
+inductive pippo : Type \def
+  | a : Type \to pippo
+  | b : Prop \to pippo
+  | c : Set \to pippo.
+
+definition pollo : Set \to Set \def
+  \lambda a:Set.a.
+
+inductive paolo : Prop \def t:paolo.
+
+theorem comeno : \forall p:pippo.pippo.
+intros.assumption.
+qed.
+
+definition f : pippo \to paolo \def
+  \lambda x:pippo.
+  match x with 
+  [ (a z) \Rightarrow t
+  | (b z) \Rightarrow t
+  | (c z) \Rightarrow t ].
+
+record w : Type \def {
+mario : Prop;
+pippo : Set
+}.
+