Added tests for ignoring Object methods when loading interface.

This commit is contained in:
Evgeny Gerashchenko
2013-03-26 21:18:20 +04:00
parent ecf882fc21
commit 8f079f6d41
7 changed files with 82 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
package test;
public interface InterfaceWithObjectMethods {
int hashCode();
boolean equals(Object obj);
Object clone();
String toString();
void finalize();
}