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

cs0053-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0813952257ec9027cd75aa826914d9045d523789 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs0053: Inconsistent accessibility: property type `Blah[]' is less accessible than property `A.B'
// Line: 6

public class A {

	public Blah [] B {
		get { return null; }
	}

	static void Main () {}
}

class Blah {
	
}