view run/sizeof_03.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(){
	bit i[];
	i.length=4;
	assert(i.length==4);
	assert(i.sizeof==8);
	return 0;
}