view tangotests/n.d @ 231:61aa721a6b7f trunk

[svn r247] fixed accessing global symbols from inline asm.
author lindquist
date Sun, 08 Jun 2008 01:07:58 +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();
}