dmd/compiler/test/runnable/test22205.d
2022-07-09 18:53:07 +02:00

17 lines
240 B
D

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