id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
76	Compilation time is exponential in depth of constructor nesting	benl		"Added by Jared.

Albeit with a very small constant, so you won't notice it until the
constructors are nested 7 or 8 deep.  The table shows the run times on my computer of a class of functions of the form:

{{{
example = ()
  where (Cons v1 (Cons v2 (Cons v3 (Cons v4 xs)))) = []

Depth | Compile time | Normalized time | Log of normalized time
    9 |      123.164 |         121.864 |  4.803
    8 |       31.874 |          30.574 |  3.420
    7 |        9.089 |           7.789 |  2.052
    6 |        3.276 |           1.976 |  0.681
    5 |        1.856 |           0.556 | -0.587
    4 |        1.456 |           0.156 | -1.858
    3 |        1.376 |           0.076 | -2.577
}}}

Changes to Shared.VarPrim seem to have broken this example in another way. I'll leave
it as New until I can test it.
"	task	closed	blocker	0.1.3	Source Type Inferencer		fixed		
