summaryrefslogtreecommitdiff
path: root/test-suite/output/Inductive.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/output/Inductive.v')
-rw-r--r--test-suite/output/Inductive.v4
1 files changed, 4 insertions, 0 deletions
diff --git a/test-suite/output/Inductive.v b/test-suite/output/Inductive.v
index 8db8956e..8ff91268 100644
--- a/test-suite/output/Inductive.v
+++ b/test-suite/output/Inductive.v
@@ -1,3 +1,7 @@
Fail Inductive list' (A:Set) : Set :=
| nil' : list' A
| cons' : A -> list' A -> list' (A*A).
+
+(* Check printing of let-ins *)
+Inductive foo (A : Type) (x : A) (y := x) := Foo.
+Print foo.