view test/structs6.d @ 46:6a54b832369a trunk

[svn r50]
author lindquist
date Fri, 19 Oct 2007 16:37:34 +0200
parents 881158a93592
children
line wrap: on
line source

module structs6;

struct S
{
    float f;
}

void func(S s)
{
}

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