import java.io.*; interface Persistable { } public aspect Code { public interface I extends Persistable { } public static void foo() {} public boolean I.equals(Persistable that) { return false; } }