view tangotests/n.d @ 190:36044016709a trunk

[svn r206] Fixed some interfaceInfo related issues, closes #44
author lindquist
date Mon, 12 May 2008 14:32:29 +0200
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();
}