annotate compile/t/tuple_05_D.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 70b7f985fe9f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1243
70b7f985fe9f [Issue 582] New: Cannot slice mixed tuples
thomask
parents:
diff changeset
1 // $HeadURL$
70b7f985fe9f [Issue 582] New: Cannot slice mixed tuples
thomask
parents:
diff changeset
2 // $Date$
70b7f985fe9f [Issue 582] New: Cannot slice mixed tuples
thomask
parents:
diff changeset
3 // $Author$
70b7f985fe9f [Issue 582] New: Cannot slice mixed tuples
thomask
parents:
diff changeset
4
70b7f985fe9f [Issue 582] New: Cannot slice mixed tuples
thomask
parents:
diff changeset
5 // @author@ Michael Arntzenius <daekharel@gmail.com>
70b7f985fe9f [Issue 582] New: Cannot slice mixed tuples
thomask
parents:
diff changeset
6 // @date@ 2006-11-21
1320
daef239f37cf sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
thomask
parents: 1243
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=582
1243
70b7f985fe9f [Issue 582] New: Cannot slice mixed tuples
thomask
parents:
diff changeset
8 // @desc@ [Issue 582] New: Cannot slice mixed tuples
70b7f985fe9f [Issue 582] New: Cannot slice mixed tuples
thomask
parents:
diff changeset
9
70b7f985fe9f [Issue 582] New: Cannot slice mixed tuples
thomask
parents:
diff changeset
10 module dstress.compile.t.tuple_05_D;
70b7f985fe9f [Issue 582] New: Cannot slice mixed tuples
thomask
parents:
diff changeset
11
70b7f985fe9f [Issue 582] New: Cannot slice mixed tuples
thomask
parents:
diff changeset
12 template Tuple(T ...) {
70b7f985fe9f [Issue 582] New: Cannot slice mixed tuples
thomask
parents:
diff changeset
13 const Tuple = T[1 .. 3].length;
70b7f985fe9f [Issue 582] New: Cannot slice mixed tuples
thomask
parents:
diff changeset
14 }
70b7f985fe9f [Issue 582] New: Cannot slice mixed tuples
thomask
parents:
diff changeset
15
70b7f985fe9f [Issue 582] New: Cannot slice mixed tuples
thomask
parents:
diff changeset
16 static assert(Tuple!(float, int, double, real) == 2);
70b7f985fe9f [Issue 582] New: Cannot slice mixed tuples
thomask
parents:
diff changeset
17