view run/overload_07.d @ 70:5f98d4a33d49

1) review of all test cases with unexpected results (except encoding and html/xml) 2) updated todo
author thomask
date Sat, 23 Oct 2004 22:47:47 +0000
parents 3414705c41ac
children a33ad7189d21
line wrap: on
line source

// @author@	Andy Friesen <andy@ikagames.com>
// @date@	2004-04-30
// @uri@	news://c6s698$2nt$1@digitaldaemon.com
// @url@	nttp://digitalmars.com/digitalmars.D.bugs:32

module dstress.run.overload_07;

int status;

class MyClass{
	void foo(){
		status='N';
	}
	
	static void foo(int x){
		status=x;
	}
}

int main(){
	MyClass m = new MyClass();

	MyClass.foo('S');
	assert(status=='S');

	m.foo('s');
	assert(status=='s');

	m.foo();
	assert(status=='N');

	return 0;
}