[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0591-3.cs
blob8254a5b819833e66fd65fdc2650221148727618f
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 ("")]
9 extern static void Blah ();
11 static void Main (string [] args)