mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
14 lines
199 B
D
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();
|
|
}
|
|
}
|