aboutsummaryrefslogtreecommitdiff
path: root/test-suite/micromega/bug_11089.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/micromega/bug_11089.v')
-rw-r--r--test-suite/micromega/bug_11089.v13
1 files changed, 13 insertions, 0 deletions
diff --git a/test-suite/micromega/bug_11089.v b/test-suite/micromega/bug_11089.v
new file mode 100644
index 0000000000..e62b5b8d9e
--- /dev/null
+++ b/test-suite/micromega/bug_11089.v
@@ -0,0 +1,13 @@
+Require Import Lia.
+Unset Lia Cache.
+Definition t := nat.
+Goal forall (n : t), n = n.
+Proof.
+ intros.
+ lia.
+Qed.
+Goal let t' := nat in forall (n : t'), n = n.
+Proof.
+ intros.
+ lia.
+Qed.