blob: 8254a5b819833e66fd65fdc2650221148727618f (
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 ("")]
extern static void Blah ();
static void Main (string [] args)
{
}
}
|