]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/fail_compilation/ice13644.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / ice13644.d
1
2 struct Tuple(T...)
3 {
4 T field;
5 alias field this;
6 }
7
8 Tuple!(string, string)[] foo()
9 {
10 Tuple!(string, string)[] res;
11 return res;
12 }
13
14 void main()
15 {
16 foreach (string k2, string v2; foo())
17 {
18 }
19 }