view tests/mini/structs5.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

module structs5;

void main()
{
    {S s = S();}
    {T t = T(1);}
    {U u = U();}
}

struct S
{
}

struct T
{
    int i;
}

struct U
{
    S s;
    long l;
}