* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / tests / test-338.cs
1 class X {
2         public static void Main() { }
3         
4         Y Y;
5         
6         static object z = Y.Z.I;
7         static Y.Z fz () {return Y.Z.I; }
8 }
9
10 public class Y {
11         public class Z {
12                 public readonly static Z I = new Z ();
13         }
14 }