Files
ldc/tests/mini/cyclic.d

17 lines
96 B
D

void main()
{
S t;
}
struct T
{
int i;
S* s;
}
struct S
{
long i;
T* t;
}