view tests/mini/o.d @ 1608:679d101395e8

Merge DMD r262: bugzilla 3381 ([tdpl] Incorrect assessment of ...) The full bug title is: [tdpl] Incorrect assessment of overriding in triangular-shaped hierarchy. --- dmd/class.c | 2 +- dmd/func.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletions(-)
author Leandro Lucarella <llucax@gmail.com>
date Wed, 06 Jan 2010 15:18:20 -0300
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();
}