view test/scope5.d @ 103:855adfdb8d38 trunk

[svn r107] Getting .classinfo on a class instance now works (classinfo is stored in vtable)
author lindquist
date Sun, 18 Nov 2007 08:25:07 +0100
parents 3587401b6eeb
children
line wrap: on
line source

module scope5;

int i;

void func(int a, int b)
{
    i = 0;
    {
        scope(exit) i++;
        if (a) {
            scope(exit) i++;
            if (b) return;
            i++;
        }
    }
    i++;
}

void main()
{
    func(0,0);
    assert(i == 2);
    func(1,1);
    assert(i == 2);
    func(1,0);
    assert(i == 4);
}