]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/runnable/test30.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / runnable / test30.d
1 // https://issues.dlang.org/show_bug.cgi?id=444
2
3 int main()
4 {
5 int nothing( int delegate(ref int) dg ) {return 0;}
6 foreach(int x; &nothing)
7 return 7;
8 return 0;
9 }
10