[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0716.cs
blob48a64eb9ebcc2c251764b3625d80d0dd29ace0cf
1 // CS0716: Cannot convert to static type `StaticClass'
2 // Line: 10
4 static class StaticClass {
7 class MainClass {
8 public static void Method (object arg)
10 ((StaticClass)arg).ToString ();