view tests/mini/structs7.d @ 908:6690a1468c17

Apply patch for #193. Thanks fvbommel.
author Christian Kamm <kamm incasoftware de>
date Thu, 29 Jan 2009 16:56:48 +0100
parents 44f08170f4ef
children
line wrap: on
line source

module structs7;

struct S
{
    int i;
    long l;
}

void main()
{
    S s = void;
    int i = s.i;
    long l = s.l;
}