Cannot skip on the first type match for multiple inheritances
[mono.git] / mcs / errors / cs0108-14.cs
1 // CS0108: `IMutableSequence.this[int]' hides inherited member `ISequence.this[int]'. 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 }