blob: 2c83058c350756de8af8d7436921174ca5eca563 (
plain)
1
2
3
4
5
6
7
8
9
|
// CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
// Line: 8
using System.Runtime.InteropServices;
class X {
[DllImport ("1" + 9)]
extern static void Blah ();
}
|