view nocompile/n/new_23.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 139307e27398
children
line wrap: on
line source

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

// @author@	Jarrett Billingsley <kb3ctd2@yahoo.com>
// @date@	2005-06-08
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=4248
// @desc@	nested struct non-static initializer crash

// __DSTRESS_ELINE__ 19

module dstress.nocompile.n.new_23;

class A{

	class B{
	}

	B b=new B;
}