view tangotests/n.d @ 146:ddfdae91281a trunk

[svn r151] fixed #29: out contracts work now
author ChristianK
date Mon, 10 Mar 2008 19:29:39 +0100
parents 44a95ac7368a
children
line wrap: on
line source

struct Structure
{
    static void static_method()
    {
    }

    void method()
    {
    }
}

void main()
{
    //Structure.static_method();

    Structure s;
    s.method();
}