view test/throw1.d @ 76:9e1bd80a7e98 trunk

[svn r80] Fixed union literals
author lindquist
date Wed, 31 Oct 2007 07:24:02 +0100
parents 4648206ca213
children 5071469303d4
line wrap: on
line source

module throw1;

extern(C) int rand();

class C
{
}

void func()
{
    if (rand() & 1)
        throw new C;
}

int main()
{
    try
    {
        func();
    }
    catch(Object)
    {
        return 1;
    }
    return 0;
}