view test/classes7.d @ 68:c4b3f5d2cd9b trunk

[svn r72] Calling a nested function that is not a delegate was not working.
author lindquist
date Sun, 28 Oct 2007 03:14:29 +0100
parents ee302fe07296
children
line wrap: on
line source

module classes7;

class C
{
    int i=0;
    void f()
    {
        i=42;
    }
    void g()
    {
        f();
    }
}

void main()
{
    scope c = new C;
    c.g();
    assert(c.i == 42);
}