summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0647-13.cs
blob: 96751a139aee7a581a783a9dc8e86c00421c2cfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0647: Error during emitting `System.Runtime.InteropServices.DllImportAttribute' attribute. The reason is `DllName cannot be empty or null'
// Line: 8

using System.Runtime.InteropServices;
using System;

class X {
	[DllImport (null)]
	extern static void Blah ();

    static void Main (string [] args)
    {
    }

}