From: Enrico Tassi Date: Fri, 17 Jun 2005 14:59:59 +0000 (+0000) Subject: uses new pattern concrete syntax X-Git-Tag: INDEXING_NO_PROOFS~119 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=af55e721b611647b5cb7d738441f10e5f1305747;p=helm.git uses new pattern concrete syntax --- diff --git a/helm/matita/tests/rewrite.ma b/helm/matita/tests/rewrite.ma index 82f245185..56ea93bf8 100644 --- a/helm/matita/tests/rewrite.ma +++ b/helm/matita/tests/rewrite.ma @@ -4,8 +4,8 @@ alias symbol "eq" (instance 0) = "leibnitz's equality". alias symbol "plus" (instance 0) = "natural plus". theorem a: \forall a,b:nat. - a = b \to b + 0 = a. + a = b \to b + a = a + a. intros. -rewrite left H. -auto. +rewrite right H in (? ? % ?). +reflexivity. qed. \ No newline at end of file