From: Enrico Tassi Date: Thu, 6 Jul 2006 08:18:26 +0000 (+0000) Subject: ... X-Git-Tag: 0.4.95@7852~1242 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=5404f2b14e0f0c82a1fa8d87fabdb5372f041a65;p=helm.git ... --- diff --git a/matita/tests/tinycals.ma b/matita/tests/tinycals.ma new file mode 100644 index 000000000..5cd2548a8 --- /dev/null +++ b/matita/tests/tinycals.ma @@ -0,0 +1,49 @@ +(**************************************************************************) +(* ___ *) +(* ||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/test/tinycals". + +theorem prova: + \forall A,B:Prop. + \forall H:A \to A \to A \to A \to A \to B.A \to B. +intros. +apply H; + [assumption + |3,5:assumption; + 4:assumption + |*:assumption + ] +qed. + +theorem prova1: + \forall A,B:Prop. + \forall H:A \to A \to A \to A \to A \to B.A \to B. +intros. +apply H; + [*:assumption + ] +qed. + +theorem prova2: + \forall A,B:Prop. + \forall H:A \to A \to A \to A \to A \to B.A \to B. +intros. +apply H; + [2:assumption + |assumption + 3,5:assumption + *:assumption + ] +qed. +