(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
failsafeb.d
/*
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();
}