Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-625.cs
1 //
2 // fixed
3 //
4 class Location {
5         static public int Null {
6                 get {
7                         return 1;
8                 }
9         }
10 }
11
12 class X {
13         Location Location;
14         X ()
15         {
16                 int a = Location.Null;
17         }
18
19         public static void Main () {}
20 }
21         
22         
23