view tangotests/n.d @ 230:79d8f6b3fbaf trunk

[svn r246] fixed asm4 test
author lindquist
date Sat, 07 Jun 2008 21:38:14 +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();
}