summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/3491.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/closed/3491.v')
-rw-r--r--test-suite/bugs/closed/3491.v4
1 files changed, 4 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/3491.v b/test-suite/bugs/closed/3491.v
new file mode 100644
index 00000000..fd394ddb
--- /dev/null
+++ b/test-suite/bugs/closed/3491.v
@@ -0,0 +1,4 @@
+(* Was failing while building the _rect scheme, due to wrong computation of *)
+(* the number of non recursively uniform parameters in the presence of let-ins*)
+Inductive list (A : Type) (T := A) : Type :=
+ nil : list A | cons : T -> list T -> list A.