blob: 5bb9cec8a811929fa9e074a0f1fa67cd2a616b5c [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail114.d(12): Error: forward reference to 'funcA'
---
*/
// Issue 371 - ICE on mutual recursive typeof in function declarations
void funcA(typeof(&funcB) p) {}
void funcB(typeof(&funcA) p) {}