[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0591-4.cs
blobadf1ff5aefd7488942fc884dba02e8fcc5038998
1 // CS0591: Invalid value for argument to `System.Runtime.InteropServices.DllImportAttribute' attribute
2 // Line: 8
4 using System.Runtime.InteropServices;
5 using System;
7 class X {
8 [DllImport (null)]
9 extern static void Blah ();
11 static void Main (string [] args)