2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0647-13.cs
blobe48c0e08d5de782cd879609b63fe0df1bb1933ad
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 (null)]
9 extern static void Blah ();
11 static void Main (string [] args)