1 // CS0121: The call is ambiguous between the following methods or properties: `C.Foo(object, string)' and `C.Foo(int, object)'
6 delegate void D (int x
, string s
);
8 static void Foo (object o
, string s
) { }
9 static void Foo (int x
, object o
) { }