view tests/mini/cyclic.d @ 1074:d9820e08bb84

Make sure revisions.pl always runs so revisions.h doesn't get out of date.
author Frits van Bommel <fvbommel wxs.nl>
date Mon, 09 Mar 2009 16:25:45 +0100
parents 1bb99290e03a
children
line wrap: on
line source

void main()
{
    S t;
}

struct T
{
    int i;
    S* s;
}

struct S
{
    long i;
    T* t;
}