(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
imports/
test20023b.d
module imports.test20023b;

auto threw()() @safe
{
    try
        throw new Exception("Hello");
    catch (Exception e)
        return e;
    assert(0);
}