2010-02-09 Miguel de Icaza <miguel@novell.com>
[mono.git] / mcs / errors / gcs1909.cs
1 // CS1909: The DefaultParameterValue attribute is not applicable on parameters of type `int[]'\r
2 // Line: 7\r
3 \r
4 using System.Runtime.InteropServices;\r
5 \r
6 class Test {\r
7         void f ([DefaultParameterValue (new int[0])] int[] x)\r
8         {\r
9         }\r
10 }\r