summaryrefslogtreecommitdiff
path: root/test-suite/output/Show.v
diff options
context:
space:
mode:
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 00000000..60faac8d
--- /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.