abstract class A{ static boolean isBool() { return false; } interface I { boolean b(); } { I i = A::isBool; } }