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)
{
}
}