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