2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0647-12.cs
blobedcdec29d9be5e794122ec285f649b2cfe889c2e
1 // CS0647: Error during emitting `System.Runtime.InteropServices.DllImportAttribute' attribute. The reason is `DllName cannot be empty'
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)