comparison run/t/tuple_22_B.d @ 1511:fcafb2c9da5f

[Issue 1138] ICE when tuple template gets indexed Manuel K?nig <manuelk89@gmx.net> 2007-04-13 http://d.puremagic.com/issues/show_bug.cgi?id=1138
author thomask
date Mon, 23 Apr 2007 18:08:39 +0000
parents
children
comparison
equal deleted inserted replaced
1510:f0259cabdf78 1511:fcafb2c9da5f
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // @author@ Manuel König <manuelk89@gmx.net>
6 // @date@ 2007-04-13
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=1138
8 // @desc@ [Issue 1138] ICE when tuple template gets indexed
9
10 module dstress.run.t.tuple_22_B;
11
12 template Tuple(T...){
13 alias T items;
14 }
15
16 void dummy(...){
17 }
18
19 int main(){
20 dummy(Tuple!(1, 2, 3).items);
21 return 0;
22 }