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: 913c0df25e44a0a7e1395677106929f71688ebd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// CS0055: Inconsistent accessibility: parameter type `ErrorCS0055' is less accessible than indexer `Foo.this[ErrorCS0055]'
// Line:  11

using System;

class ErrorCS0055 {
	public ErrorCS0055 () {}
}

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

	public static void Main () {
	}
}