view run/overload_03.d @ 1:3414705c41ac

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


int status;

void check( byte b){
	status+=b;
}

void check( short s ){
	status-=s;
}

void check( int i ){
	status+= i*2;
}

int main(){

	byte b = 2;
	short s = 3;
	int i = 4;

	assert(status == 0);
	check(b);
	assert(status == 2);
	check(s);
	assert(status == -1);
	check(i);
	assert(status == 7 );
	return 0;
}