view tests/mini/bug45.d @ 911:1d9fe5e2a13c

Fix typo in [909].
author Christian Kamm <kamm incasoftware de>
date Thu, 29 Jan 2009 17:59:25 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module bug45;

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

void main() {
    foo();
}