7 lines
150 B
C#
Raw Normal View History

// CS0257: An __arglist parameter must be the last parameter in a formal parameter list
// Line: 5
class Test
{
void Foo (__arglist, bool b) {}
}