view test/scope5.d @ 124:a939ec89fc72 trunk

[svn r128] function local typedefs were not working
author lindquist
date Wed, 28 Nov 2007 03:34:37 +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);
}