[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / errors / cs0108-11.cs
blob8c2c04341a72310dfb9e36c8f8d2c1c132404351
1 // CS0108: `Bar.this[int, int]' hides inherited member `Foo.this[int, int]'. Use the new keyword if hiding was intended
2 // Line: 15
3 // Compiler options: -warnaserror -warn:2
5 public class Foo
7 public long this [int start, int count] {
8 set {
13 public class Bar : Foo
15 public virtual long this [int i, int length] {
16 set {