Merge pull request #3769 from evincarofautumn/fix-verify-before-allocs
[mono.git] / mcs / errors / cs0122-14.cs
1 // CS0122: `Test.SomeValue' is inaccessible due to its protection level
2 // Line: 7
3 // Compiler options: -r:CS0122-14-lib.dll
4
5 public class MyEnum
6 {
7         int Unknown = Test.SomeValue;
8         static void Main () {}
9 }
10