view test/throw1.d @ 78:2332006e1fa4 trunk

[svn r82] Fixed: Fall-through switch cases were broken.
author lindquist
date Wed, 31 Oct 2007 20:50:21 +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;
}