dlr bug
[mcs.git] / tests / test-302.cs
blob8191dbc1b290773ee896d8ff3bcab7dee0967359
1 using System;
3 class A
5 class C : Exception { }
7 public class B
9 class C : Exception { }
11 public B () {
12 try {
13 throw new A.B.C ();
15 catch (C e) {
20 public static void Main()
22 object o = new A.B();