aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorcoqbot-app[bot]2020-11-20 09:32:34 +0000
committerGitHub2020-11-20 09:32:34 +0000
commita8a0285c153cab810dedba6bae5a2a6a6d2c4333 (patch)
treec328b81d028179b5a9c0cc68ec385d232e09daba /test-suite
parent122aef582e69f692e6720097a3fac7e0d4d41bcd (diff)
parentf6a8c2542a5ce85a91caf9b1745c980c2164707a (diff)
Merge PR #13360: Fix incorrect name refreshing when interning a generalized binder
Reviewed-by: herbelin
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.