December 26, 2004
(dmd.109 winxpsp2en)

>(LINKER) Error 1: Previous Definition Different : _D3tmp3foo3Bar3bazi


void foo(float a)
{
	struct Bar
	{
		static int baz;
	}
}

void foo(int a)
{
	struct Bar
	{
		static int baz;
	}
}

void main() {}
December 26, 2004
Added to DStress as http://dstress.kuehne.cn/run/static_20.d http://dstress.kuehne.cn/run/static_21.d http://dstress.kuehne.cn/run/static_22.d http://dstress.kuehne.cn/run/static_23.d

Thomas