aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/closed/3491.v
diff options
context:
space:
mode:
authorGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2015-03-24 22:29:38 +0100
committerGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2015-03-24 22:46:35 +0100
commit72b5c9d35dddf774c1d517889cb8f48a932d7095 (patch)
treeecdafe672c974bbfd4ef13101a5e4346097b0009 /test-suite/bugs/closed/3491.v
parent7061f479eaf148779d216ad6779cf153076fb005 (diff)
Fixing computation of non-recursively uniform arguments in the
presence of let-ins. This fixes #3491.
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 000000000..fd394ddbc
--- /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.