Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-242.cs
1 // This code must be compilable without any warning
2 // Compiler options: -warnaserror -warn:4
3
4 class BaseClass {
5         public int Location = 3;
6 }
7
8 class Derived : BaseClass {
9         public new int Location {
10             get {
11                 return 9;
12             }
13         }
14         
15         public static void Main () { }
16 }