view tests/mini/structs6.d @ 911:1d9fe5e2a13c

Fix typo in [909].
author Christian Kamm <kamm incasoftware de>
date Thu, 29 Jan 2009 17:59:25 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module structs6;

struct S
{
    float f;
}

void func(S s)
{
}

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