d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / failsafeb.d
blob6af6b6f98c6493fdd0e187bfec5ac866fec18577
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/failsafeb.d(13): Error: `@safe` function `failsafeb.callingsystem` cannot call `@system` function pointer `sysfuncptr`
5 ---
6 */
8 void function() @system sysfuncptr;
10 @safe
11 void callingsystem()
13 sysfuncptr();