blob: 22fc616c87c6f20d16036d8ea4e79b2d47605399 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail139.d(8): Error: forward reference to 'test'
---
*/
void test(typeof(&test) p)
{
}
void main()
{
test(null);
}