mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
15 lines
158 B
D
15 lines
158 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail139.d(8): Error: forward reference to `test`
|
|
---
|
|
*/
|
|
|
|
void test(typeof(&test) p)
|
|
{
|
|
}
|
|
|
|
void main()
|
|
{
|
|
test(null);
|
|
}
|