mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
18 lines
223 B
D
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)
|
|
{
|
|
}
|
|
}
|