* Form.cs: Make the fix for #80775 windows-only (fixes #81957).
[mono.git] / mcs / errors / gcs1909.cs
1 // gcs1909.cs: The DefaultValue 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