diff options
| author | Maxime Dénès | 2017-05-28 12:51:42 +0200 |
|---|---|---|
| committer | Maxime Dénès | 2017-05-28 12:51:42 +0200 |
| commit | 606ae29a6972ab8b11dfc010b2b52e85e99e69d9 (patch) | |
| tree | d3f97bf4b3328964d5b640f79e3e738bfc827c6d /test-suite/output | |
| parent | ba0aa5993e4469b83a7bc5e9a03b347416fc2664 (diff) | |
| parent | cde87048ee6074e203db8b062740bec0be9484d2 (diff) | |
Merge PR#680: add Show test with -emacs flag for trunk
Diffstat (limited to 'test-suite/output')
| -rw-r--r-- | test-suite/output/Show.out | 12 | ||||
| -rw-r--r-- | test-suite/output/Show.v | 11 |
2 files changed, 23 insertions, 0 deletions
diff --git a/test-suite/output/Show.out b/test-suite/output/Show.out new file mode 100644 index 0000000000..bf1bf2809d --- /dev/null +++ b/test-suite/output/Show.out @@ -0,0 +1,12 @@ +3 subgoals (ID 29) + + H : 0 = 0 + ============================ + 1 = 1 + +subgoal 2 (ID 33) is: + 1 = S (S m') +subgoal 3 (ID 20) is: + S (S n') = S m + +(dependent evars: (printing disabled) ) diff --git a/test-suite/output/Show.v b/test-suite/output/Show.v new file mode 100644 index 0000000000..60faac8dd9 --- /dev/null +++ b/test-suite/output/Show.v @@ -0,0 +1,11 @@ +(* -*- mode: coq; coq-prog-args: ("-emacs") -*- *) + +(* tests of Show output with -emacs flag to coqtop; see bug 5535 *) + +Theorem nums : forall (n m : nat), n = m -> (S n) = (S m). +Proof. + intros. + induction n as [| n']. + induction m as [| m']. + Show. +Admitted. |
