summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0647-12.cs
blob: f1d8370235649976b1b0adbc92f99d2b7dbf39c6 (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 ("")]
	extern static void Blah ();

    static void Main (string [] args)
    {
    }

}