[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-debug-03.cs
1 class C
2 {
3         static C ()
4         {
5         }
6 }
7
8 class C1
9 {
10         static int a = 55;
11 }
12
13 class C2
14 {
15         static int a = 55;
16         
17         static C2 ()
18         {
19         }
20 }
21
22 class Test
23 {
24         public static void Main ()
25         {
26         }
27 }