view tests/mini/structs6.d @ 418:94c4e090c1af

clean out obj dir before running mini test.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Mon, 28 Jul 2008 07:25:13 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module structs6;

struct S
{
    float f;
}

void func(S s)
{
}

void main()
{
    func(S());
}