December 24, 2004
// Internal error: e2ir.c 229

void main()
{
	void foo() {}
	void function() bar = function void() { foo(); };
}


same result for


void main()
{
	void foo() {}
	function void() { foo(); };
}


verbose compilation info dump [tmp.d]:

parse     tmp
semantic  tmp
semantic2 tmp
semantic3 tmp
code      tmp
generating code for function 'main'
generating code for function 'foo'
generating code for function '__funclit1'
Internal error: e2ir.c 229
December 26, 2004
Added to DStress as http://dstress.kuehne.cn/run/bug_e2ir_299_A.d http://dstress.kuehne.cn/run/bug_e2ir_299_B.d

Thomas