view run/t/this_16_A.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

module dstress.run.t.this_16_A;

template T(){
	this(int i){
		check = i;
	}

	int check;
}

class C{
	void foo(){
		bar();
		this.t.check++;
	}
	mixin T!() t;

	void bar(){
		this.t.check++;
	}
}

int main(){
	C c = new C(100);
	c.foo();

	if(102 != c.t.check){
		assert(0);
	}

	return 0;
}