view run/overload_22.d @ 416:b7efa2ad5425

fixed void/int typo
author thomask
date Sat, 09 Apr 2005 19:22:15 +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_22;

int init (int x) {
	return 0;
}

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

int main(){
	assert(init(3L)==1);
	assert(init(5)==0);
	return 0;
}