Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail328.d
blob: 12347e5790973c678f6033088b3673df86ea5e51 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail328.d(13): Error: `@safe` function `fail328.foo` cannot call `@system` function `fail328.bar`
fail_compilation/fail328.d(9): `fail328.bar` is declared here
---
*/
void
bar
();
@safe
void
foo
()
{
bar
();
}