view run/constructor_04.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +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;
}