i.e.: ``` class Itf { Object foo(); } ``` ``` ...
# language-proposals
m
i.e.:
Copy code
class Itf {
  Object foo();
}
Copy code
class Bar implements Itf {
  @Override public String foo() { return ""; }
  // javac adds the following synthetic bridge:
  // public Object foo() {
  //   return this.foo(); // invokes the method returning String
  // }
}