annotate compile/t/tuple_07_B.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 3054c226a571
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1276
3054c226a571 [Issue 494] New: template's variadic argument can't use as type
thomask
parents:
diff changeset
1 // $HeadURL$
3054c226a571 [Issue 494] New: template's variadic argument can't use as type
thomask
parents:
diff changeset
2 // $Date$
3054c226a571 [Issue 494] New: template's variadic argument can't use as type
thomask
parents:
diff changeset
3 // $Author$
3054c226a571 [Issue 494] New: template's variadic argument can't use as type
thomask
parents:
diff changeset
4
3054c226a571 [Issue 494] New: template's variadic argument can't use as type
thomask
parents:
diff changeset
5 // @author@ Nazo Humei <lovesyao@hotmail.com>
3054c226a571 [Issue 494] New: template's variadic argument can't use as type
thomask
parents:
diff changeset
6 // @date@ 2006-11-12
1320
daef239f37cf sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
thomask
parents: 1276
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=494
1276
3054c226a571 [Issue 494] New: template's variadic argument can't use as type
thomask
parents:
diff changeset
8 // @desc@ [Issue 494] New: template's variadic argument can't use as type
3054c226a571 [Issue 494] New: template's variadic argument can't use as type
thomask
parents:
diff changeset
9
3054c226a571 [Issue 494] New: template's variadic argument can't use as type
thomask
parents:
diff changeset
10 module dstress.compile.t.tuple_07_B;
3054c226a571 [Issue 494] New: template's variadic argument can't use as type
thomask
parents:
diff changeset
11
3054c226a571 [Issue 494] New: template's variadic argument can't use as type
thomask
parents:
diff changeset
12 template test(TA...){
3054c226a571 [Issue 494] New: template's variadic argument can't use as type
thomask
parents:
diff changeset
13 const TA[0] test = TA[0].init;
3054c226a571 [Issue 494] New: template's variadic argument can't use as type
thomask
parents:
diff changeset
14 }
3054c226a571 [Issue 494] New: template's variadic argument can't use as type
thomask
parents:
diff changeset
15
3054c226a571 [Issue 494] New: template's variadic argument can't use as type
thomask
parents:
diff changeset
16 static assert(test!(byte) == 0);
3054c226a571 [Issue 494] New: template's variadic argument can't use as type
thomask
parents:
diff changeset
17