]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/runnable/imports/link9571a.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / runnable / imports / link9571a.d
1 module imports.link9571a;
2 struct MapResult(alias fun)
3 {
4 void bar() { fun(0); }
5 }
6 auto foo()
7 {
8 alias MapResult!(function(int c) => 0) M;
9 M m;
10 m.bar();
11 }