summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0122-14.cs
blob: 23e50bd3f50cc59ab2593e50a012d100dea6b7ae (plain)
1
2
3
4
5
6
7
8
9
10
// CS0122: `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 () {}
}