view tangotests/o.d @ 265:455eb10696f2 trunk

[svn r286] removing test statistics from repository; they are too big and change too often
author ChristianK
date Sun, 15 Jun 2008 11:40:47 +0200
parents 44a95ac7368a
children
line wrap: on
line source

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

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

void main()
{
    func();
}