summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0591-4.cs
blob: adf1ff5aefd7488942fc884dba02e8fcc5038998 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0591: Invalid value for argument to `System.Runtime.InteropServices.DllImportAttribute' attribute
// Line: 8

using System.Runtime.InteropServices;
using System;

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

    static void Main (string [] args)
    {
    }

}