[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs0108-19.cs
blobf29dd7b85c9b23ce4da4179aaab764dd95ae7630
1 // CS0108: `A.B.AnInt' hides inherited member `A.AnInt'. Use the new keyword if hiding was intended
2 // Line: 11
3 // Compiler options: -warnaserror
5 public abstract class A
7 static readonly int AnInt = 2;
9 public class B : A
11 static readonly int AnInt = 3;