fe777c5c82
Former-commit-id: 6a76a29bd07d86e57c6c8da45c65ed5447d38a61
14 lines
208 B
C#
14 lines
208 B
C#
// CS1501: No overload for method `Foo' takes `0' arguments
|
|
// Line: 12
|
|
|
|
class C
|
|
{
|
|
static void Foo (string foo, params object [] moreFoo)
|
|
{
|
|
}
|
|
|
|
static void Main ()
|
|
{
|
|
Foo ();
|
|
}
|
|
} |