view test/nested5.d @ 235:c603041da866 trunk

[svn r251] fixed arguments checking in runtest script
author ChristianK
date Sun, 08 Jun 2008 12:06:22 +0200
parents 8096ba7082db
children d9d5d59873d8
line wrap: on
line source

module nested5;

void main()
{
    int i = 42;

    printf("Hello world %d\n", i++);

    class C
    {
        void func()
        {
            printf("Hello world %d\n", i++);
            //i++;
        }
    }

    scope c = new C;
    c.func();
    assert(i == 44);
}