]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/fail_compilation/failsafec.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / failsafec.d
1
2 void delegate() @system sysdelegate;
3
4 @safe
5 void callingsystem()
6 {
7 sysdelegate();
8 }
9