view tangotests/n.d @ 191:2900754a6989 trunk

[svn r207] Fixed: the runtime support didn't handle string switch.
author lindquist
date Mon, 12 May 2008 14:58:55 +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();
}