view test/nested5.d @ 335:17b844102023 trunk

[svn r356] Fixed problem with array length assignment introduced in [355]
author lindquist
date Sat, 12 Jul 2008 17:04:36 +0200
parents d9d5d59873d8
children
line wrap: on
line source

module nested5;
extern(C) int printf(char*, ...);

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);
}