[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs0182-16.cs
blob73a9430e03d6774a0d6b9ac7584a70a4decd45bc
1 // CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
2 // Line: 10
4 using System.Runtime.InteropServices;
6 class X {
7 static string dll = "some.dll";
9 [DllImport (dll)]
10 extern static void Blah ();