"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs1909.cs
blobde241ed3405534ace2093138e1f972558c6d66cc
1 // CS1909: The DefaultParameterValue attribute is not applicable on parameters of type `int[]'
2 // Line: 7
4 using System.Runtime.InteropServices;
6 class Test {
7 void f ([DefaultParameterValue (new int[0])] int[] x)