**** Merged from MCS ****
[mono-project.git] / mcs / tests / test-306.cs
blob6dd09cdbd47745443c4a6f1bec5af6a26f03cd78
1 using System;
3 using C = A.D;
5 class A
7 class D : Exception { }
9 public class B
11 class C : Exception { }
13 public B () {
14 try {
15 throw new A.B.C ();
17 catch (C e) {
22 public static void Main()
24 object o = new A.B();