view run/sizeof_01.d @ 4:1ed6616fe905

extended array tests
author thomask
date Sun, 26 Sep 2004 15:54:31 +0000
parents
children f87ba6507260
line wrap: on
line source

int main(){
	int i[4];
	assert(i.length==4);
	assert(i.sizeof==4*int.sizeof);
	return 0;
}