package jck.proc;

interface i2 {
    default void defaultMethod() {}
    static void staticMethod() {}
    String abstractMethod();
}
