mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
10 lines
244 B
D
10 lines
244 B
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) {}
|