view tests/mini/structs6.d @ 886:7ddd03a2ce02

Typo fix in rebuild profile. Thanks BlueZeniX.
author Christian Kamm <kamm incasoftware de>
date Fri, 16 Jan 2009 21:06:33 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module structs6;

struct S
{
    float f;
}

void func(S s)
{
}

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