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

cs0122-15.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f69ce780dab16de7a258f693d65b5c6622cae63d (plain)
1
2
3
4
5
6
7
8
9
10
// cs0122-15.cs: 'Test.SomeValue' is inaccessible due to its protection level
// Line: 7
// Compiler options: -r:CS0122-15-lib.dll

public class MyEnum
{
	int Unknown = Test.SomeValue;
	static void Main () {}
}