mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
17 lines
240 B
D
17 lines
240 B
D
// REQUIRED_ARGS: -debug
|
|
|
|
void main() nothrow
|
|
{
|
|
debug
|
|
{
|
|
try
|
|
{
|
|
throw new Exception("2");
|
|
}
|
|
catch (Exception) {}
|
|
catch (Throwable)
|
|
{
|
|
assert(0);
|
|
}
|
|
}
|
|
}
|