blob: f9b8ef9ded362d547ce732360bd94ba10e5f65c0 [file] [log] [blame]
package test;
public interface InterfaceWithObjectMethods {
int hashCode();
boolean equals(Object obj);
Object clone();
String toString();
void finalize();
}