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

18 lines
223 B
D

class E2 : Exception { this() { super(null); } }
class E3 : Exception { this() { super(null); } }
void main()
{
try
{
}
catch (E3)
{
}
catch (E2)
{
}
catch (Exception)
{
}
}