view run/const_14.d @ 301:99646b466ecd

evaluated const John Reimer <brk_6502@yahoo.com> 2005-02-20 news:pan.2005.02.20.14.41.58.234018@yahoo.com nntp://news.digitalmars.com/digitalmars.D.bugs/3030
author thomask
date Sat, 12 Mar 2005 10:51:48 +0000
parents
children 52c9e86b6486
line wrap: on
line source

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

// @author@	John Reimer <brk_6502@yahoo.com>
// @date@	2005-02-20
// @uri@	news:pan.2005.02.20.14.41.58.234018@yahoo.com
// @url@	nntp://news.digitalmars.com/digitalmars.D.bugs/3030

module dstress.run.const_14;

const int c = 50*50;

const int b = 4*c;
int[4*c]  array;

int main(){
	assert(array.length==4*50*50);
	return 0;
}