view tests/mini/scope5.d @ 823:794c8af186ce

Fixed non-static struct initializers.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Wed, 03 Dec 2008 01:40:28 +0100
parents 1bb99290e03a
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);
}