[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0122-14.cs
blob23e50bd3f50cc59ab2593e50a012d100dea6b7ae
1 // CS0122: `Test.SomeValue' is inaccessible due to its protection level
2 // Line: 7
3 // Compiler options: -r:CS0122-14-lib.dll
5 public class MyEnum
7 int Unknown = Test.SomeValue;
8 static void Main () {}