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

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

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