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

cs0055.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a37d8e5293677ebd3ebdb60f68c7da2124803a68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// cs0055.cs: Inconsistent accessibility. Parameter type is less accessible than indexer.
// Line:  11

using System;

class ErrorCS0055 {
	public ErrorCS0055 () {}
}

public class Foo {
	public int this[ErrorCS0055 e] {
		get { return 5; }
	}

	public static void Main () {
	}
}