view run/overload_19.d @ 417:30f510ddc33a

fixed void/int typo
author thomask
date Sat, 09 Apr 2005 19:24:10 +0000
parents ad4e3b6d6192
children b8c0195059d9
line wrap: on
line source

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

// @author@	Kirs <fu@bar.com>
// @date@	2005-04-08
// @uri@	news:d37pf8$17b3$2@digitaldaemon.com

module dstress.run.overload_19;

class Foo{
	int init (int x) {
		return 0;
	}

	static int init (long y) {
		return 1;
	}
}

int main(){
	assert(Foo.init(2L)==1);
	Foo f = new Foo;
	assert(Foo.init(3L)==1);
	assert(f.init(4L)==1);
	assert(f.init(5)==0);
	return 0;
}