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

cs1551.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0384c23be25a1e583c05c7b91735dbe73ed6a8bd (plain)
1
2
3
4
5
6
7
8
9
10
// cs1551.cs: Indexers must have at least one parameter
// Line: 8

class Test
{
    public int this []
    {
        set {}
    }
}