aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test-suite/failure/check.v3
-rw-r--r--test-suite/failure/params_ind.v4
2 files changed, 7 insertions, 0 deletions
diff --git a/test-suite/failure/check.v b/test-suite/failure/check.v
new file mode 100644
index 0000000000..77f2252b88
--- /dev/null
+++ b/test-suite/failure/check.v
@@ -0,0 +1,3 @@
+Implicits eq [1].
+
+Check (eq bool). \ No newline at end of file
diff --git a/test-suite/failure/params_ind.v b/test-suite/failure/params_ind.v
new file mode 100644
index 0000000000..206891286a
--- /dev/null
+++ b/test-suite/failure/params_ind.v
@@ -0,0 +1,4 @@
+Inductive list [A:Set] : Set :=
+ nil : (list A)
+| cons : A -> (list A->A)-> (list A).
+