New test.
[mono.git] / mcs / errors / cs1670-2.cs
1 // cs1670-2.cs: The `params' modifier is not allowed in anonymous method declaration
2 // Line: 6
3
4 class C
5 {
6         public static explicit operator X (params C[] foo)
7         {
8                 return null;
9         }
10 }