dmd/compiler/test/fail_compilation/diag7050b.d
2022-07-09 18:53:07 +02:00

14 lines
199 B
D

/*
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();
}
}