Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0109-7.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9a51dda09bbaf368daeaa69a64a333ec43b65dae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs0109.cs: The member 'Test.this[int]' 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
	{
	}
    }
}