[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0514.cs
blobee80d82e62086abe14fd944b3a566676d6c09e7a
1 // CS0514: `X.X()': static constructor cannot have an explicit `this' or `base' constructor call
2 // Line: 4
3 class X {
4 static X () : base ()
8 static void Main () {}