view test/bug45.d @ 253:c6f25edd6ef3 trunk

[svn r270] Forgot the test for struct debug info.
author lindquist
date Thu, 12 Jun 2008 17:01:31 +0200
parents 7299ff502248
children
line wrap: on
line source

module bug45;

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

void main() {
    foo();
}