aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/output/Show.v
diff options
context:
space:
mode:
authorGravatar Paul Steckler <steck@stecksoft.com>2017-05-25 12:21:48 -0400
committerGravatar Paul Steckler <steck@stecksoft.com>2017-05-25 12:21:48 -0400
commitcde87048ee6074e203db8b062740bec0be9484d2 (patch)
tree9536816ccc7184c5267fe263fc4b8b88cdc5008a /test-suite/output/Show.v
parent9c8cdd5f6c1cb4bda2f8558c17df3ffe69c49264 (diff)
add Show test with -emacs flag
Diffstat (limited to 'test-suite/output/Show.v')
-rw-r--r--test-suite/output/Show.v11
1 files changed, 11 insertions, 0 deletions
diff --git a/test-suite/output/Show.v b/test-suite/output/Show.v
new file mode 100644
index 000000000..60faac8dd
--- /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.