aboutsummaryrefslogtreecommitdiff
path: root/test-suite/success/Abstract.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/success/Abstract.v')
-rw-r--r--test-suite/success/Abstract.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/test-suite/success/Abstract.v b/test-suite/success/Abstract.v
index d52a853aae..24634bd321 100644
--- a/test-suite/success/Abstract.v
+++ b/test-suite/success/Abstract.v
@@ -1,6 +1,6 @@
(* Cf BZ#546 *)
-Require Import Omega.
+Require Import Lia.
Section S.
@@ -19,7 +19,7 @@ induction n.
replace (2 * S n0) with (2*n0 + 2) ; auto with arith.
apply DummyApp.
2:exact Dummy2.
- apply IHn0 ; abstract omega.
+ apply IHn0 ; abstract lia.
Defined.
End S.