[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0619-40.cs
blob607fe4b77d77e22008b5d68e9f48e217549f9011
1 // CS0619-40: `C.ob' is obsolete: `ooo'
2 // Line: 13
4 using System;
6 class C
8 [Obsolete("ooo", true)]
9 const int ob = 4;
11 public void Test (int arg)
13 switch (arg) {
14 case ob: return;