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

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

// @author@	Carlos Santander <csantander619@gmail.com>
// @date@	2006-07-09
// @uri@	news:e8sdrv$2k9c$1@digitaldaemon.com
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=660
// @desc@	name resolution and static function

module dstress.run.s.static_37_J;

class A{
	public static int foo (int i){
		return i + 1;
	}
}

class B{
	int foo (int x){
		return A.foo(x) * 2;
	}
}

int main(){
	B b = new B();

	if(b.foo(2) != 6){
		assert(0);
	}

	return 0;
}