view tests/mini/structs7.d @ 782:29f0e5847123

Don't use StdCall on Windows.
author Christian Kamm <kamm incasoftware de>
date Sat, 22 Nov 2008 21:08:00 +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;
}