Updated with review feedback.
[mono.git] / mcs / errors / cs1751.cs
1 // CS1751: Cannot specify a default value for a parameter array
2 // Line: 6
3
4 class C
5 {
6         public static void Test (params C[] a = null)
7         {
8         }
9 }