blob: 85140e81b3d0dc6f2f5d8f8e7491ea7446103c05 (
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-15-lib.dll
public class MyEnum
{
int Unknown = Test.SomeValue;
static void Main () {}
}
|