package foo;

interface DefaultInterface {

    default public void f() {
    System.out.println("Hi");
    }
}