blob: 65eeef701a000554740b2a8bb0fb79ee076cbbee [file] [log] [blame]
/*
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) {}