Files
linux-packaging-mono/mcs/errors/cs1104.cs

9 lines
156 B
C#
Raw Normal View History

// CS1104: The parameter modifiers `this' and `params' cannot be used altogether
// Line: 6
static class S
{
static void Foo (params this int[] o)
{
}
}