view run/constructor_04.d @ 1610:db616bfa8a4a

Fix asm_jp_01_A which depended on EAX == 1, but only set AL = 1.
author Christian Kamm <kamm incasoftware de>
date Sun, 10 May 2009 10:21:52 +0200
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;
}