Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
diag7050b.d
blob: 78912cdf1d89f18e30dd0bd89b7ca72df2df62ce [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/diag7050b.d(12): Error: `pure` function `diag7050b.f.g` cannot call impure function `diag7050b.f`
---
*/
void
f
()
{
pure
void
g
()
{
f
();
}
}