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

cs0111-9.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a198440fdef88dd2e37c1a9ed39844588f93c7d (plain)
1
2
3
4
5
6
7
8
// CS0111: A member `C.this[int]' is already defined. Rename this member or use different parameter types
// Line: 6

class C
{
    bool this [int i] { get { return false; } }
    bool this [int i] { get { return true; } }
}