[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-302.cs
1 using System;
2
3 class A
4 {
5         class C : Exception { }
6
7         public class B
8         {
9                 class C : Exception { }
10
11                 public B () {
12                         try {
13                                 throw new A.B.C ();
14                         }
15                         catch (C e) {
16                         }
17                 }
18         }
19
20         public static void Main()
21         {
22                 object o = new A.B();
23         }
24 }