15 lines
198 B
C#
Raw Normal View History

// CS1501: No overload for method `Foo' takes `3' arguments
// Line: 12
class Test
{
public static void Foo (string s = null, int value = 2)
{
}
static void Main ()
{
Foo ("a", 2, 6);
}
}