view tests/mini/structs6.d @ 1576:4551475bc6b6

Kill off StripMetaData.
author Benjamin Kramer <benny.kra@gmail.com>
date Tue, 25 Aug 2009 21:35:43 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module structs6;

struct S
{
    float f;
}

void func(S s)
{
}

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