view test/structs5.d @ 318:8e570dbe4087 trunk

[svn r339] Add cleanup handling when within an action chain and some more documentation to the eh personality function.
author ChristianK
date Fri, 04 Jul 2008 09:00:49 +0200
parents 12fd8ce55d9c
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;
}