interface CanMove { double speed(); } interface CanFly extends CanMove { CanFly speed(CanFly fly); }