mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
10 lines
124 B
D
10 lines
124 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail126.d(8): Error: forward reference to `test`
|
|
---
|
|
*/
|
|
|
|
void test(typeof(test) p)
|
|
{
|
|
}
|