(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0108-11.cs
blobb4fe34149f00cd70202de91ea138b73028470a1e
1 // cs0108.cs: The new keyword is required on 'Bar.this[int, int]' because it hides inherited member
2 // Line: 15
3 // Compiler options: -warnaserror -warn:1
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 {