[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs0182-16.cs
1 // CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
2 // Line: 10
3
4 using System.Runtime.InteropServices;
5
6 class X {
7         static string dll = "some.dll";
8         
9         [DllImport (dll)]
10         extern static void Blah ();
11 }