aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/bug_12928.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/closed/bug_12928.v')
-rw-r--r--test-suite/bugs/closed/bug_12928.v7
1 files changed, 7 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_12928.v b/test-suite/bugs/closed/bug_12928.v
new file mode 100644
index 0000000000..2f4d1dd16d
--- /dev/null
+++ b/test-suite/bugs/closed/bug_12928.v
@@ -0,0 +1,7 @@
+
+Lemma test: forall (x:bool) (x: nat), nat.
+Proof. intros y x; abstract (exact x). Qed.
+
+Set Mangle Names.
+Lemma test': forall x : nat, nat.
+Proof. intros x. abstract exact x. Qed.