mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
15 lines
189 B
D
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;
|
|
}
|