abstract class C { void foo(Object s){ } abstract String foo(String s); { this.foo("").toLowerCase(); } }