view test/bug45.d @ 80:7299ff502248 trunk

[svn r84] Fixed: Returning from a void function from inside the try of a try-finally block was broken.
author lindquist
date Wed, 31 Oct 2007 22:35:39 +0100
parents
children
line wrap: on
line source

module bug45;

void foo() {
    int bar;
    scope(exit) { bar++; }
    if (bar) return;
}

void main() {
    foo();
}