diff options
| author | coqbot-app[bot] | 2020-09-08 15:09:00 +0000 |
|---|---|---|
| committer | GitHub | 2020-09-08 15:09:00 +0000 |
| commit | d19175c1c7e64777129742dbc986521efa61072e (patch) | |
| tree | 10fdf1de3dea32585863b4a76a929919b0640d94 /test-suite | |
| parent | bfcd647d26378bb9a654630c5c2379a769cea967 (diff) | |
| parent | df6d411a7f9aecdd3794fa837d425ff280a153a7 (diff) | |
Merge PR #12931: Proof using cleanup, small doc addition and fix using Type in collections
Reviewed-by: gares
Ack-by: Zimmi48
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/bug_12930.v | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_12930.v b/test-suite/bugs/closed/bug_12930.v new file mode 100644 index 0000000000..e2a524301a --- /dev/null +++ b/test-suite/bugs/closed/bug_12930.v @@ -0,0 +1,10 @@ +Section S. + Variable v : Prop. + Variable vv : v. + Collection easy := Type*. + + Lemma ybar : v. + Proof using easy. + exact vv. + Qed. +End S. |
