2014-09-04 09:07:35 +01:00
|
|
|
// CS0591: Invalid value for argument to `System.Runtime.InteropServices.DllImportAttribute' attribute
|
2014-08-13 10:39:27 +01:00
|
|
|
// Line: 8
|
|
|
|
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
using System;
|
|
|
|
|
|
|
|
class X {
|
|
|
|
[DllImport (null)]
|
|
|
|
extern static void Blah ();
|
|
|
|
|
|
|
|
static void Main (string [] args)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|