view tests/mini/cyclic.d @ 462:f7ba5f705d59

Path combining on Windows didn't work with / properly.
author Christian Kamm <kamm incasoftware de>
date Sun, 03 Aug 2008 12:27:11 +0200
parents 1bb99290e03a
children
line wrap: on
line source

void main()
{
    S t;
}

struct T
{
    int i;
    S* s;
}

struct S
{
    long i;
    T* t;
}