2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0108-13.cs
blob8acffbd3e800ba7c25a4cb6b77e12c52fabd8366
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
5 public interface ISequence
7 object this [int index]
9 get;
13 public interface IMutableSequence : ISequence
15 object this [int index]
17 get;
18 set;