blob: f16382af384dfbec553cab61a194b8878f8ee0f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 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);
}
}
|