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: 5c5c0acdcc9e4e00b0dc12ec9646cad558e897a1 (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 () {}
}