Files
linux-packaging-mono/mcs/errors/cs1670-2.cs

11 lines
164 B
C#
Raw Normal View History

// CS1670: The `params' modifier is not allowed in current context
// Line: 6
class C
{
public static explicit operator X (params C[] foo)
{
return null;
}
}