public class Solution { public static void main(String[] args) { } interface CanMove{ Double spd = 1.1; default Double speed() { return spd; } } interface CanFly extends CanMove { default CanFly speed(CanFly fly){ return fly; } } }