aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorLaurent Théry2018-09-21 16:41:55 +0200
committerGitHub2018-09-21 16:41:55 +0200
commit9b8499178e7ce58c576a81c73f1cc23c74ed8aee (patch)
tree66392b730341fe94ba9b8efeb9317261c97e9a2f /test-suite
parent508265318ad39d2962587af4e10f79f4cf4cf4c6 (diff)
parentf5e33af81f56253ba777cde96831ef23f25addba (diff)
Merge pull request #8462 from vbgl/zify-colonequal
Zify: replace local definitions by equations
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/success/ROmega4.v6
1 files changed, 3 insertions, 3 deletions
diff --git a/test-suite/success/ROmega4.v b/test-suite/success/ROmega4.v
index 58ae5b8fb8..a724592749 100644
--- a/test-suite/success/ROmega4.v
+++ b/test-suite/success/ROmega4.v
@@ -3,12 +3,12 @@
See also #148 for the corresponding improvement in Omega.
*)
-Require Import ZArith ROmega.
+Require Import ZArith Lia.
Open Scope Z.
Goal let x := 3 in x = 3.
intros.
-romega.
+lia.
Qed.
(** Example seen in #4132
@@ -22,5 +22,5 @@ Lemma foo
(H : - zxy' <= zxy)
(H' : zxy' <= x') : - b <= zxy.
Proof.
-romega.
+lia.
Qed.