Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
compilable
/
exception.d
blob: 0b85762fe7d78f8de73ebd42f478e610eb6ec517 [
file
] [
log
] [
blame
]
class
E2
:
Exception
{
this
()
{
super
(
null
);
}
}
class
E3
:
Exception
{
this
()
{
super
(
null
);
}
}
void
main
()
{
try
{
}
catch
(
E3
)
{
}
catch
(
E2
)
{
}
catch
(
Exception
)
{
}
}