view tests/mini/structs6.d @ 818:e8f8cafcaa62

Fix fibers in tango patch
author Christian Kamm <kamm incasoftware de>
date Mon, 01 Dec 2008 20:26:32 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module structs6;

struct S
{
    float f;
}

void func(S s)
{
}

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