view test/cyclic.d @ 48:4d171915a77b trunk

[svn r52] fixed static arrays in struct literals
author lindquist
date Fri, 19 Oct 2007 17:15:30 +0200
parents c53b6e3fe49a
children
line wrap: on
line source

void main()
{
    S t;
}

struct T
{
    int i;
    S* s;
}

struct S
{
    long i;
    T* t;
}