view tests/mini/bug308_double_finally.d @ 1413:f9285cf14c0d

Add test from #308 to minitests.
author Christian Kamm <kamm incasoftware de>
date Sat, 23 May 2009 00:26:38 +0200
parents
children
line wrap: on
line source

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

long foo(ref int p) {
    try { return 0; }
    finally {
        p++;
        throw new Object;
    }
}

void main() {
    int p = 0;
    try {
        foo(p);
        assert(0);
    } catch {
    }
    printf("Number of types scope(exit) was executed : %d\n", p);
    assert(p == 1);
}