view tests/mini/structs2.d @ 652:c8fcde3337b0

Fix TryFinally without body or finalbody.
author Christian Kamm <kamm incasoftware de>
date Sun, 05 Oct 2008 22:26:25 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module structs2;

struct S
{
    int i;
    char c;
    S* s;
    char[4] ca;
}

void main()
{
}