(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0109-4.cs
blob83683ef3d376e443000b7d5c678e4a24e378ee41
1 // cs0109.cs: The member 'Derived.this[string]' does not hide an inherited member. The new keyword is not required
2 // Line: 10
3 // Compiler options: -warnaserror -warn:4
5 class Base {
6 public bool this [int arg] { set {} }
9 class Derived : Base {
10 public new bool this [string arg] { set {} }