view test/throw1.d @ 104:4d1e9eb001e0 trunk

[svn r108] Now basic suppport for complex types. =,+,-,*,/ are supported.
author lindquist
date Mon, 19 Nov 2007 02:58:58 +0100
parents 5071469303d4
children
line wrap: on
line source

module throw1;

extern(C) int rand();

class C
{
}

void func(bool b)
{
    if (b)
        throw new C;
}

int main()
{
    bool b = true;
    try
    {
        func(b);
    }
    catch(Object)
    {
        return 1;
    }
    return 0;
}