view test/structs2.d @ 12:ee302fe07296 trunk

[svn r16] * Updated all tests to have a main * Updated runalltests to both compile and run the tests
author lindquist
date Tue, 02 Oct 2007 05:27:44 +0200
parents c53b6e3fe49a
children
line wrap: on
line source

module structs2;

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

void main()
{
}