2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1909.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)