diff options
| author | coqbot-app[bot] | 2020-11-20 09:32:34 +0000 |
|---|---|---|
| committer | GitHub | 2020-11-20 09:32:34 +0000 |
| commit | a8a0285c153cab810dedba6bae5a2a6a6d2c4333 (patch) | |
| tree | c328b81d028179b5a9c0cc68ec385d232e09daba /test-suite | |
| parent | 122aef582e69f692e6720097a3fac7e0d4d41bcd (diff) | |
| parent | f6a8c2542a5ce85a91caf9b1745c980c2164707a (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.v | 9 |
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. |
