Bump mono-extensions to fix build break (#5677)
[mono.git] / mcs / errors / cs0108-14.cs
1 // CS0108: `B.D' hides inherited member `A.D'. Use the new keyword if hiding was intended
2 // Line: 15
3 // Compiler options: -warnaserror -warn:2
4
5 public class B : A
6 {
7         public delegate void D ();
8 }
9
10 public class A
11 {
12         public int D;
13 }