view run/constructor_04.d @ 88:a3b3e35e30c0

fixed import
author thomask
date Mon, 01 Nov 2004 13:32:20 +0000
parents dfbc0188e5aa
children a33ad7189d21
line wrap: on
line source

// @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
// @url@	nttp://digitalmars.com/D.gnu:829

// see also dstress.addon.constructor_04_A

// __DSTRESS_DFLAGS__ -I..  addon/constructor_04_A.d 

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

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