view nocompile/n/new_23.d @ 572:139307e27398

Nested struct non-static initializer crash Jarrett Billingsley <kb3ctd2@yahoo.com> 2005-06-08 news:d88a8a$4b3$1@digitaldaemon.com
author thomask
date Thu, 09 Jun 2005 14:47:33 +0000
parents
children b8c0195059d9
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	Jarrett Billingsley <kb3ctd2@yahoo.com>
// @date@	2005-06-08
// @uri@	news:d88a8a$4b3$1@digitaldaemon.com
// @desc@	nested struct non-static initializer crash

// __DSTRESS_ELINE__ 19

module dstress.nocompile.n.new_23;

class A{

	class B{
	}

	B b=new B;
}