aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorVincent Laporte2020-08-11 10:34:43 +0200
committerVincent Laporte2020-08-11 10:34:43 +0200
commit873130ae0e8f6079388f4be8259cd893f314e6d5 (patch)
tree7e2ac6718a3e953754cec25db7b7c2a903c2d9a3 /test-suite
parent83ca3cb2e715b66e04987048ed6e4af1f7400d89 (diff)
parent74932ad2ff431f49370d8bb0f730a588b192b484 (diff)
Merge PR #12815: [micromega] Fix bug#12790
Reviewed-by: vbgl
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/micromega/bug_12790.v8
1 files changed, 8 insertions, 0 deletions
diff --git a/test-suite/micromega/bug_12790.v b/test-suite/micromega/bug_12790.v
new file mode 100644
index 0000000000..39d640ebd9
--- /dev/null
+++ b/test-suite/micromega/bug_12790.v
@@ -0,0 +1,8 @@
+Require Import Lia.
+
+Goal forall (a b c d x: nat),
+S c = a - b -> x <= x + (S c) * d.
+Proof.
+intros a b c d x H.
+lia.
+Qed.