]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/matita/tests/record.ma
- renamed ocaml/ to components/
[helm.git] / helm / matita / tests / record.ma
diff --git a/helm/matita/tests/record.ma b/helm/matita/tests/record.ma
deleted file mode 100644 (file)
index ed9ecfe..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-(**************************************************************************)
-(*       ___                                                              *)
-(*      ||M||                                                             *)
-(*      ||A||       A project by Andrea Asperti                           *)
-(*      ||T||                                                             *)
-(*      ||I||       Developers:                                           *)
-(*      ||T||         The HELM team.                                      *)
-(*      ||A||         http://helm.cs.unibo.it                             *)
-(*      \   /                                                             *)
-(*       \ /        This file is distributed under the terms of the       *)
-(*        v         GNU General Public License Version 2                  *)
-(*                                                                        *)
-(**************************************************************************)
-
-set "baseuri" "cic:/matita/tests/record/".
-
-record empty : Type \def {}.
-
-inductive True : Prop \def I: True.
-
-record pippo : Type \def 
-{
-a: Set ;
-b: a \to Prop;
-c: \forall x:a.(b x) \to a \to Type 
-}.
-
-record pluto (A, B:Set) : Type \def {
-d: A \to B \to Prop;
-e: \forall y:A.\forall z:B. (d y z) \to A \to B;
-mario: \forall y:A.\forall z:B. \forall h:(d y z). \forall i : B \to Prop.
-   i (e y z h y)
-}.
-
-record paperino: Prop \def {
-  paolo : Type;
-  pippo : paolo \to paolo;
-  piero : True
-}.