dmd/compiler/test/fail_compilation/fail139.d
2022-07-09 18:53:07 +02:00

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);
}