[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / errors / cs0122-15.cs
1 // CS0122: `Test.SomeValue' is inaccessible due to its protection level
2 // Line: 7
3 // Compiler options: -r:CS0122-15-lib.dll
4
5 public class MyEnum
6 {
7         int Unknown = Test.SomeValue;
8         static void Main () {}
9 }
10