Updated with review feedback.
[mono.git] / mcs / errors / cs0109-7.cs
1 // CS0109: The member `Test.this[string]' does not hide an inherited member. The new keyword is not required
2 // Line: 9
3 // Compiler options: -warnaserror -warn:4
4
5 using System.Collections;
6
7 public class Test: ArrayList
8 {
9     public new string this[string index]
10     {
11         set
12         {
13         }
14     }
15 }