view tests/mini/compile_rawvardeclinfinally.d @ 1453:f35a9a77d256

More tweaks.
author Robert Clipsham <robert@octarineparrot.com>
date Mon, 01 Jun 2009 18:58:21 +0100
parents 8baf611f0009
children
line wrap: on
line source

void foo() {
    void delegate()[] bar;
    try {
    } finally {
        foreach (dg; bar)
            dg();
    }
}