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