[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs0182-14.cs
blob2c83058c350756de8af8d7436921174ca5eca563
1 // CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
2 // Line: 8
4 using System.Runtime.InteropServices;
6 class X {
7 [DllImport ("1" + 9)]
8 extern static void Blah ();