view tests/mini/o.d @ 1643:8f121883bce8

Apply patch from klickverbot. This is his 'proper fix' patch for bug #395.
author Kelly Wilson <wilsonk cpsc.ucalgary.ca>
date Mon, 08 Mar 2010 23:37:40 -0700
parents eaf87e36ce0d
children
line wrap: on
line source

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

void func()
{
    try
    {
        printf("try\n");
        return;
    }
    catch
    {
        printf("catch\n");
    }
    finally
    {
        printf("finally\n");
    }
    return;
}

void main()
{
    func();
}