aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorEnrico Tassi2019-06-04 09:42:28 +0200
committerEnrico Tassi2019-06-04 09:42:28 +0200
commit589aaf4f97d5cfcdabfda285739228f5ee52261f (patch)
tree2b7f0d27ad8259bc7b68d90fdbbdcfc41edee63e /test-suite
parenta18b1ae63e07cf7e174e3e8862ac32f00ce74865 (diff)
parent30ed0b3385d80e2abe3d2d8c67ce09643a8bf74c (diff)
Merge PR #10276: Fix #10268: vio2vo produces incorrect term when discharging.
Reviewed-by: gares Ack-by: ppedrot
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.