aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorcoqbot-app[bot]2020-08-27 14:13:13 +0000
committerGitHub2020-08-27 14:13:13 +0000
commit829d7ac10175c41eaf3ce8ad9531abeab713dcba (patch)
tree1b2c074d6a633b8c7760ae50d8e0cee5d3b0eae2 /test-suite
parent0e70c44e2dd19b7323b64b02578544424da95712 (diff)
parent179a23ad345c6d0753bbb1771fc01f402dc1cb33 (diff)
Merge PR #12913: Modify lia to work with -mangle-names
Reviewed-by: maximedenes Ack-by: SkySkimmer
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/bug_12907.v7
1 files changed, 7 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_12907.v b/test-suite/bugs/closed/bug_12907.v
new file mode 100644
index 0000000000..4cd79cc1af
--- /dev/null
+++ b/test-suite/bugs/closed/bug_12907.v
@@ -0,0 +1,7 @@
+From Coq Require Export Lia.
+Set Mangle Names.
+Lemma test (n : nat) : n <= 10 -> n <= 20.
+Proof. lia. Qed.
+
+Lemma test2 : 0 < 1.
+Proof. lia. Qed.