view test/cyclic.d @ 76:9e1bd80a7e98 trunk

[svn r80] Fixed union literals
author lindquist
date Wed, 31 Oct 2007 07:24:02 +0100
parents c53b6e3fe49a
children
line wrap: on
line source

void main()
{
    S t;
}

struct T
{
    int i;
    S* s;
}

struct S
{
    long i;
    T* t;
}