d: Merge upstream dmd 568496d5b, druntime 178c44ff, phobos 574bf883b.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / exception.d
blob0b85762fe7d78f8de73ebd42f478e610eb6ec517
1 class E2 : Exception { this() { super(null); } }
2 class E3 : Exception { this() { super(null); } }
4 void main()
6 try
9 catch (E3)
12 catch (E2)
15 catch (Exception)