Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-605.cs
1 class TestA
2 {
3         public virtual string Method
4         {
5                 get { return null; }
6         }
7 }
8
9 class TestB : TestA
10 {
11         private string Method
12         {
13                 get { return null; }
14         }
15
16         public static void Main ()
17         {
18         }
19 }