]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/compilable/test9209.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / test9209.d
1 // PERMUTE_ARGS:
2
3 // 9209
4
5 auto array(T)(T t){ return t; }
6
7 auto bar()(in int* x)
8 {
9 if (true) return 0;
10 return array(bar(x));
11 }
12
13 void main ()
14 {
15 bar(null);
16 }