annotate compile/t/template_43_A.d @ 1320:daef239f37cf

sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
author thomask
date Sun, 31 Dec 2006 19:59:08 +0000
parents 48006b92f2b7
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1121
48006b92f2b7 [Issue 296] New: Template constant can not be used as size of static array.
thomask
parents:
diff changeset
1 // $HeadURL$
48006b92f2b7 [Issue 296] New: Template constant can not be used as size of static array.
thomask
parents:
diff changeset
2 // $Date$
48006b92f2b7 [Issue 296] New: Template constant can not be used as size of static array.
thomask
parents:
diff changeset
3 // $Author$
48006b92f2b7 [Issue 296] New: Template constant can not be used as size of static array.
thomask
parents:
diff changeset
4
48006b92f2b7 [Issue 296] New: Template constant can not be used as size of static array.
thomask
parents:
diff changeset
5 // @author@ Oskar Linde <oskar.linde@gmail.com>
48006b92f2b7 [Issue 296] New: Template constant can not be used as size of static array.
thomask
parents:
diff changeset
6 // @date@ 2006-08-19
1320
daef239f37cf sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
thomask
parents: 1121
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=296
1121
48006b92f2b7 [Issue 296] New: Template constant can not be used as size of static array.
thomask
parents:
diff changeset
8 // @desc@ [Issue 296] New: Template constant can not be used as size of static array.
48006b92f2b7 [Issue 296] New: Template constant can not be used as size of static array.
thomask
parents:
diff changeset
9
48006b92f2b7 [Issue 296] New: Template constant can not be used as size of static array.
thomask
parents:
diff changeset
10 module dstress.compile.t.template_43_A;
48006b92f2b7 [Issue 296] New: Template constant can not be used as size of static array.
thomask
parents:
diff changeset
11
48006b92f2b7 [Issue 296] New: Template constant can not be used as size of static array.
thomask
parents:
diff changeset
12 template Count(){
48006b92f2b7 [Issue 296] New: Template constant can not be used as size of static array.
thomask
parents:
diff changeset
13 const int Count = 5;
48006b92f2b7 [Issue 296] New: Template constant can not be used as size of static array.
thomask
parents:
diff changeset
14 }
48006b92f2b7 [Issue 296] New: Template constant can not be used as size of static array.
thomask
parents:
diff changeset
15
48006b92f2b7 [Issue 296] New: Template constant can not be used as size of static array.
thomask
parents:
diff changeset
16 int[Count!()] x;
48006b92f2b7 [Issue 296] New: Template constant can not be used as size of static array.
thomask
parents:
diff changeset
17
48006b92f2b7 [Issue 296] New: Template constant can not be used as size of static array.
thomask
parents:
diff changeset
18 static assert(x.length != 5);