Files
ldc/test/cyclic.d
2007-09-01 21:43:27 +02:00

17 lines
96 B
D

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