view run/overload_05.d @ 1623:04022926a4d5

Fix dstress.run.b.bug_cod1_2528_C as reported by Don Clugston Quoting Don's words from Ticket #8: Fails because it returns 3 instead of 0. The DStress test case is incorrect. The arrray literal is an int, so it's 4 bytes. Casting it to void[] should give a length of 4 -- and that's exactly what it does. Should be "return x.length - 4;".
author Leandro Lucarella <llucax@gmail.com>
date Fri, 05 Nov 2010 10:10:51 -0300
parents f87ba6507260
children
line wrap: on
line source

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

module dstress.run.overload_05;

int status;

struct MyStruct{
	static void check( byte b){
		status+=b;
	}
	static void check( short s ){
		status-=s;
	}
	static void check( int i ){
		status+= i*2;
	}
}

int main(){
	MyStruct S;

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

	status = 0;
	assert(status == 0);
	S.check(b);
	assert(status == 2);
	S.check(s);
	assert(status == -1);
	S.check(i);
	assert(status == 7 );

	status = 0;
	assert(status == 0);
        MyStruct.check(b);
	assert(status == 2);
	MyStruct.check(s);
	assert(status == -1);
	MyStruct.check(i);
	assert(status == 7 );

	return 0;
}