aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/success/params_ind.v4
1 files changed, 4 insertions, 0 deletions
diff --git a/test-suite/success/params_ind.v b/test-suite/success/params_ind.v
new file mode 100644
index 0000000000..206891286a
--- /dev/null
+++ b/test-suite/success/params_ind.v
@@ -0,0 +1,4 @@
+Inductive list [A:Set] : Set :=
+ nil : (list A)
+| cons : A -> (list A->A)-> (list A).
+