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

cs0122-13.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 241708dfa0b02d46306b638c4c2f69b80ff7cb09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0122-13.cs: 'Wrapper.Test.foo' is inaccessible due to its protection level
// Line: 10

internal class Test 
{
	protected const int foo = 0;
}
internal class Rest
{
	protected const int foo = Test.foo;

	static void Main () {}
}