view run/constructor_04.d @ 1576:b3e16c86558e

[Issue 1398] New: GDC doesn't generate correct code <mariusmuja@gmail.com> 2007-08-04 http://d.puremagic.com/issues/show_bug.cgi?id=1398
author thomask
date Thu, 21 Feb 2008 15:20:08 +0000
parents 52c9e86b6486
children
line wrap: on
line source

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

// @author@	shinichiro.h <s31552@mail.ecc.u-tokyo.ac.jp>
// @date@	2004-11-01
// @uri@	news:20041101173804.4e16f816.s31552@mail.ecc.u-tokyo.ac.jp
// @uri@	nntp://digitalmars.com/D.gnu/829

// see also dstress.addon.constructor_04_A

// __DSTRESS_DFLAGS__  addon/constructor_04_A.d 

module dstress.run.constructor_04;
import addon.constructor_04_A;

int main(){
	Derived c = new Derived();
	return 0;
}