Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
ice4983.d
blob: 00fa95cf5322c032adf0a12307e64d5407d69cb1 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/ice4983.d(14): Error: circular reference to `ice4983.Foo.dg`
---
*/
struct
Foo
{
void
bar
()
{
}
void
delegate
()
dg
=
&
Foo
.
init
.
bar
;
}