view tests/mini/structs.d @ 960:0b38b64f62c7

Add OSX version declaration for Mac OS X to improve dmd-mac compatibility.
author Christian Kamm <kamm incasoftware de>
date Sun, 15 Feb 2009 21:44:03 +0100
parents 1bb99290e03a
children
line wrap: on
line source

struct S
{
    int func()
    {
        return 42;
    }
}

void main()
{
    S s;
    int i = s.func();
}