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