aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs
diff options
context:
space:
mode:
authorGaëtan Gilbert2020-08-28 14:31:34 +0200
committerGaëtan Gilbert2020-08-28 14:31:34 +0200
commitdf6d411a7f9aecdd3794fa837d425ff280a153a7 (patch)
tree471d26962064a491c2212615940519424a9217d5 /test-suite/bugs
parent911f33f0a0ff648082d329841388f59e8cecf231 (diff)
Proof using cleanup, small doc addition and fix using Type in collections
Fix #12930
Diffstat (limited to 'test-suite/bugs')
-rw-r--r--test-suite/bugs/closed/bug_12930.v10
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.