(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
fail113.d
/*
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) {}