view tests/mini/structs6.d @ 749:db2dd9861600

Add basic CMake build file.
author Christian Kamm <kamm incasoftware de>
date Sun, 02 Nov 2008 21:47:31 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module structs6;

struct S
{
    float f;
}

void func(S s)
{
}

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