view nocompile/t/this_16_D.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 17cb36e8f9ae
children
line wrap: on
line source

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

// @author@	<regan@netmail.co.nz>
// @date@	2007-09-07
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=1533
// @desc@	[Issue 1533] Crash unknown symbol with std.signals

// __DSTRESS_ELINE__ 21

module dstress.nocompile.t.this_16_D;

template T(){
	this(){
	}
}

class C{
	void foo(){
		bar();
	}
	mixin T!() t;
}