Merge pull request #1659 from alexanderkyte/stringbuilder-referencesource
[mono.git] / mcs / tests / test-920.cs
1 // Compiler options: -warnaserror
2
3 class A
4 {
5         public abstract class Adapter
6         {
7         }
8 }
9
10
11 class B : A
12 {
13         public new int Adapter { get; set; }
14
15         public static void Main ()
16         {
17         }
18 }