summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0109-7.cs
blob: 7b03756bdaacf0fdb8aa29fdcc8de8afe8bff352 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0109: The member `Test.this[string]' does not hide an inherited member. The new keyword is not required
// Line: 9
// Compiler options: -warnaserror -warn:4

using System.Collections;

public class Test: ArrayList
{
    public new string this[string index]
    {
	set
	{
	}
    }
}