summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0102-15.cs
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; }
}