(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
runnable/
test22205.d
// REQUIRED_ARGS: -debug

void main() nothrow
{
    debug
    {
        try
        {
            throw new Exception("2");
        }
        catch (Exception) {}
        catch (Throwable)
        {
            assert(0);
        }
    }
}