blob: 6af6b6f98c6493fdd0e187bfec5ac866fec18577 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/failsafeb.d(13): Error: `@safe` function `failsafeb.callingsystem` cannot call `@system` function pointer `sysfuncptr`
---
*/
void function() @system sysfuncptr;
@safe
void callingsystem()
{
sysfuncptr();
}