view run/s/static_37_F.d @ 1615:8d5c55d163fd

Fix some outdated tests that used auto to mean scope.
author Christian Kamm <kamm incasoftware de>
date Sun, 12 Jul 2009 16:44:52 +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_F;

class A{
	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;
}