// CS0122: The call is ambiguous between the following methods or properties: `Test.Foo(IIn)' and `Test.Foo(IIn)' // Line: 22 interface IIn { } class Test { static void Foo (IIn f) { } static void Foo (IIn f) { } public static int Main () { IIn test = null; Foo (test); return 0; } }