view run/sizeof_04.d @ 1264:b3d4452d48ac

added DMD-0.177's results
author thomask
date Tue, 19 Dec 2006 15:00:26 +0000
parents f87ba6507260
children
line wrap: on
line source

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

module dstress.run.sizeof_04;

int main(){
	int[char[]] array;
	if(array.sizeof != (byte[byte]).sizeof){
		assert(0);
	}
	array["drei"]=3;
	array["sieben"]=7;
	if(array.sizeof != (byte[byte]).sizeof){
		assert(0);
	}
	return 0;
}