// CS0121: The call is ambiguous between the following methods or properties: `G.Foo()' and `G.Foo()' // Line: 18 using static G; using static G; class G { public static void Foo () { } } class Test { public static void Main () { Foo (); } }