view run/s/static_30_C.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 b8c0195059d9
children
line wrap: on
line source

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

// @author@	xs0 <xs0@xs0.com>
// @date@	2005-05-12
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=3960

module dstress.run.s.static_30_C;

struct Foo{
	int hash(){
		return 0;
	}

	static int hash(int val){
		return val+1;
	}
}

struct Bar{
	int test(int i){
		return Foo.hash(i);
	}
}

int main(){
	assert(Foo.hash(10)==11);
	Bar b;
	assert(b.test(10)==11);
	return 0;
}