Merge pull request #5082 from kumpera/fix-ro-fs-file-delete
[mono.git] / mcs / errors / cs0182-14.cs
1 // CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
2 // Line: 8
3
4 using System.Runtime.InteropServices;
5
6 class X {
7         [DllImport ("1" + 9)]
8         extern static void Blah ();
9 }