view run/overload_06.d @ 1:3414705c41ac

removed CVS header
author thomask
date Sun, 26 Sep 2004 12:06:09 +0000
parents 3269e4627918
children 33a25c1e1cfc
line wrap: on
line source


// @author@	Sean Kelly <sean@f4.ca>
// @date@	2004-07-28
// @uri@	news://ce8u1g$ibj$1@digitaldaemon.com

int main(){
	void foo( int x ){
		assert(0);
	}
	
	void foo( short s ){
	}

	short s=1;
	foo( s );

	return 0;
}