aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/vio/section.v12
1 files changed, 12 insertions, 0 deletions
diff --git a/test-suite/vio/section.v b/test-suite/vio/section.v
new file mode 100644
index 0000000000..0e7722516a
--- /dev/null
+++ b/test-suite/vio/section.v
@@ -0,0 +1,12 @@
+Section Foo.
+ Variable A : Type.
+
+ Definition bla := A.
+
+ Variable B : bla.
+
+ Lemma blu : {X:Type & X}.
+ Proof using A B.
+ exists bla;exact B.
+ Qed.
+End Foo.