diff options
| author | Maxime Dénès | 2017-09-11 14:01:56 +0200 |
|---|---|---|
| committer | Maxime Dénès | 2017-09-11 14:01:56 +0200 |
| commit | cc94172036789cfef28007f59510b7f17df5d45d (patch) | |
| tree | bc8f18ed22140496273fa53f2ad0f65bbd45de46 /test-suite | |
| parent | 4882288ba34ad0c47f950e733ae353a1b881df77 (diff) | |
| parent | 5241a3f69a0ff8c9d33a02d1cf3ebc7bcead8819 (diff) | |
Merge PR #1017: Addressing BZ#5713 (classical_left/classical_right artificially restricted to a non-empty context).
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/5713.v | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/5713.v b/test-suite/bugs/closed/5713.v new file mode 100644 index 0000000000..9daf9647fc --- /dev/null +++ b/test-suite/bugs/closed/5713.v @@ -0,0 +1,15 @@ +(* Checking that classical_right/classical_left work in an empty context *) + +Require Import Classical. + +Parameter A:Prop. + +Goal A \/ ~A. +classical_right. +assumption. +Qed. + +Goal ~A \/ A. +classical_left. +assumption. +Qed. |
