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

15 lines
189 B
D

/*
TEST_OUTPUT:
---
fail_compilation/ice4983.d(14): Error: circular reference to `ice4983.Foo.dg`
---
*/
struct Foo
{
void bar()
{
}
void delegate() dg = &Foo.init.bar;
}