aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorGaëtan Gilbert2020-10-02 15:08:33 +0200
committerGaëtan Gilbert2020-10-02 15:08:52 +0200
commit2c092c76a3cb96043c4eba837646c330c30398e4 (patch)
tree4fbd02911367f986ef8aef88733f38b512e879cf /test-suite
parentbb2d0d56df08ca54764be5a3eb5c09ce00009d6c (diff)
Understand Mangle Names in implicit generalization
Fix #13131
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/bug_13131.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_13131.v b/test-suite/bugs/closed/bug_13131.v
new file mode 100644
index 0000000000..b358ae3ecc
--- /dev/null
+++ b/test-suite/bugs/closed/bug_13131.v
@@ -0,0 +1,6 @@
+Set Mangle Names.
+
+Class A := {}.
+
+Lemma foo `{A} : A.
+Proof. Fail exact H. assumption. Qed.