]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/matita/tests/rewrite.ma
removed no longer used METAs
[helm.git] / helm / matita / tests / rewrite.ma
index 194dbd17ecedafbf35a4fbf83f973224a2d6a2e8..580ad13ed524bba3bbf99b98a578879e8b270491 100644 (file)
@@ -13,7 +13,7 @@
 (**************************************************************************)
 
 set "baseuri" "cic:/matita/tests/rewrite/".
-include "coq.ma".
+include "legacy/coq.ma".
 
 alias id "nat" = "cic:/Coq/Init/Datatypes/nat.ind#xpointer(1/1)".
 alias num (instance 0) = "natural number".
@@ -48,9 +48,17 @@ theorem foo: \forall n. n = n + 0.
  rewrite < t; reflexivity.
 qed.
 
-theorem test_rewrite_in_hyp: \forall n,m. n + 0 = m \to m = n + 0 \to n=m \land m+0=n+0.
+theorem test_rewrite_in_hyp:
+          \forall n,m. n + 0 = m \to m = n + 0 \to n=m \land m+0=n+0.
  intros.
  rewrite < plus_n_O in H.
  rewrite > plus_n_O in H1.
  split; [ exact H | exact H1].
 qed.
+
+theorem test_rewrite_in_hyp2:
+          \forall n,m. n + 0 = m \to n + 0 = m \to n=m \land n+0=m.
+ intros.
+ rewrite < plus_n_O in H H1 \vdash (? ? %).
+ split; [ exact H | exact H1].
+qed.