New tests.
[mono.git] / mcs / errors / cs0647-12.cs
1 // CS0647: Error during emitting `System.Runtime.InteropServices.DllImportAttribute' attribute. The reason is `DllName cannot be empty'
2 // Line: 8
3
4 using System.Runtime.InteropServices;
5 using System;
6
7 class X {
8         [DllImport ("")]
9         extern static void Blah ();
10
11     static void Main (string [] args)
12     {
13     }
14
15 }