# HG changeset patch # User thomask # Date 1110624708 0 # Node ID 99646b466ecd8d3f26b3367665e4c87fb7631ee0 # Parent c1c92aab770e1ceeb0cc76049bfa409faf78dfdb evaluated const John Reimer 2005-02-20 news:pan.2005.02.20.14.41.58.234018@yahoo.com nntp://news.digitalmars.com/digitalmars.D.bugs/3030 diff -r c1c92aab770e -r 99646b466ecd run/const_14.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/run/const_14.d Sat Mar 12 10:51:48 2005 +0000 @@ -0,0 +1,20 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// @author@ John Reimer +// @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; +}