Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0108-13.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 interface ISequence
6 {
7         object this [int index] 
8         {
9                 get;
10         }
11 }
12
13 public interface IMutableSequence : ISequence
14 {
15         object this [int index] 
16         {
17                 get;
18                 set;
19         }
20 }