a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
15 lines
198 B
C#
15 lines
198 B
C#
// 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);
|
|
}
|
|
}
|