view nocompile/array_initialization_04.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents 38ea1bb385b6
children d3a3e0c251d8
line wrap: on
line source

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

// @author@	Lionello Lunesu <lionello.lunesu@crystalinter.remove.com>
// @date@	2004-11-30
// @uri@	news:cohvnb$1eil$1@digitaldaemon.com
// @uri@	nntp://news.digitalmars.com/digitalmars.D.bugs/2383

// __DSTRESS_ELINE__ 19

module dstress.nocompile.array_initialization_04;

void test(size_t size){
}

int main(){
	for (int t=0; t<33; t++){
		test((bool[t]).sizeof);
	}
	return 0;
}