diff options
Diffstat (limited to 'test-suite/success/NatRing.v')
-rw-r--r-- | test-suite/success/NatRing.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test-suite/success/NatRing.v b/test-suite/success/NatRing.v index 8426c7e48..22d021d54 100644 --- a/test-suite/success/NatRing.v +++ b/test-suite/success/NatRing.v @@ -1,10 +1,10 @@ Require Import ArithRing. Lemma l1 : 2 = 1 + 1. -ring_nat. +ring. Qed. Lemma l2 : forall x : nat, S (S x) = 1 + S x. intro. -ring_nat. +ring. Qed. |