blob: 7e9791339ac784acae4f395e6b70442f42d9ea22 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail328.d(12): Error: @safe function 'fail328.foo' cannot call @system function 'fail328.bar'
---
*/
void bar();
@safe void foo()
{
bar();
}