aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorGaëtan Gilbert2020-11-12 14:36:02 +0100
committerGaëtan Gilbert2020-11-16 14:28:22 +0100
commitf6a8c2542a5ce85a91caf9b1745c980c2164707a (patch)
tree0aa3929d8cf431bb5ff82e6161759a9f110a95c6 /test-suite
parent89a4b7e7dd82bd46db2d00b6e48b8989d3a5372b (diff)
Fix incorrect name refreshing when interning a generalized binder
Fix #13249
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/bug_13249.v9
1 files changed, 9 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_13249.v b/test-suite/bugs/closed/bug_13249.v
new file mode 100644
index 0000000000..06f7ddbd3a
--- /dev/null
+++ b/test-suite/bugs/closed/bug_13249.v
@@ -0,0 +1,9 @@
+Global Generalizable All Variables.
+
+Section test.
+ Context {A : Type}.
+ Context `{!foo A}.
+
+ Goal foo A.
+ Proof. assumption. Defined.
+End test.