view run/const_19.d @ 1330:f3f715978184

Georg Wrede <georg@iki.fi> 2007-01-07 mail:45A120F5.1050108@iki.fi
author thomask
date Sat, 13 Jan 2007 10:33:49 +0000
parents e979fee5a2cd
children b8c0195059d9
line wrap: on
line source

// $HeadURL$
// $Date$
// $URL$

// @author@	no@where.com
// @date@	2005-04-24
// @uri@	news:d4f0uf$2rif$1@digitaldaemon.com

module dstress.run.const_19;

const int c = b * b;
const int a = 1;
const int b = a * 3;

int[c] x;

int main(){
	assert(x.length==9);
	return 0;
}