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

cs0102-15.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d11e3ec0a790108d284acdbc613681792692778c (plain)
1
2
3
4
5
6
7
8
// CS0102: The type `C' already contains a definition for `Item'
// Line: 7

class C
{
    bool this [int i] { get { return false; } }
    bool Item (int i) { return false; }
}