view test/structs3.d @ 7:7a155ba88c53 trunk

[svn r11] added another struct sample
author lindquist
date Wed, 26 Sep 2007 19:17:54 +0200
parents
children 5e69b77a5c51
line wrap: on
line source

module structs3;

struct S
{
    float l;
    char c;
}

struct T
{
    S s;
    long l;
}

void main()
{
}