/*
TEST_OUTPUT:
---
fail_compilation/fail113.d(10): Error: forward reference to `test`
---
*/
// https://issues.dlang.org/show_bug.cgi?id=370
// Compiler stack overflow on recursive typeof in function declaration.
void test(typeof(test) p) {}
/*
TEST_OUTPUT:
---
fail_compilation/fail113.d(10): Error: forward reference to `test`
---
*/
// https://issues.dlang.org/show_bug.cgi?id=370
// Compiler stack overflow on recursive typeof in function declaration.
void test(typeof(test) p) {}