aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs
diff options
context:
space:
mode:
authorHugo Herbelin2015-03-24 22:29:38 +0100
committerHugo Herbelin2015-03-24 22:46:35 +0100
commit72b5c9d35dddf774c1d517889cb8f48a932d7095 (patch)
treeecdafe672c974bbfd4ef13101a5e4346097b0009 /test-suite/bugs
parent7061f479eaf148779d216ad6779cf153076fb005 (diff)
Fixing computation of non-recursively uniform arguments in the
presence of let-ins. This fixes #3491.
Diffstat (limited to 'test-suite/bugs')
-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 0000000000..fd394ddbc3
--- /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.