view test/cyclic.d @ 166:a2c4dc388d5e trunk

[svn r182] Oups, the PGM output for the raytracer demo was borked.
author lindquist
date Tue, 06 May 2008 00:03:55 +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;
}