Merge remote branch 'upstream/master'
[mono.git] / mcs / errors / cs1909.cs
1 // CS1909: The DefaultParameterValue attribute is not applicable on parameters of type `int[]'
2 // Line: 7
3
4 using System.Runtime.InteropServices;
5
6 class Test {
7         void f ([DefaultParameterValue (new int[0])] int[] x)
8         {
9         }
10 }