(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
fail114.d
/*
TEST_OUTPUT:
---
fail_compilation/fail114.d(12): Error: forward reference to `funcA`
---
*/

// https://issues.dlang.org/show_bug.cgi?id=371
// ICE on mutual recursive typeof in function declarations
void funcA(typeof(&funcB) p) {}

void funcB(typeof(&funcA) p) {}