diff options
| author | Enrico Tassi | 2019-06-04 09:42:28 +0200 |
|---|---|---|
| committer | Enrico Tassi | 2019-06-04 09:42:28 +0200 |
| commit | 589aaf4f97d5cfcdabfda285739228f5ee52261f (patch) | |
| tree | 2b7f0d27ad8259bc7b68d90fdbbdcfc41edee63e /test-suite | |
| parent | a18b1ae63e07cf7e174e3e8862ac32f00ce74865 (diff) | |
| parent | 30ed0b3385d80e2abe3d2d8c67ce09643a8bf74c (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.v | 12 |
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. |
