Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
runnable
/
test22205.d
blob: 78abf2ff658e22235e98e153006d1c515c4d9a9b [
file
] [
log
] [
blame
]
// REQUIRED_ARGS: -debug
void
main
()
nothrow
{
debug
{
try
{
throw
new
Exception
(
"2"
);
}
catch
(
Exception
)
{}
catch
(
Throwable
)
{
assert
(
0
);
}
}
}