1 2 3 4 5 6 7 8 9 10
// CS1670: The `params' modifier is not allowed in current context // Line: 6 class C { public static explicit operator X (params C[] foo) { return null; } }