mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-14 08:31:28 +00:00
Added tests for ignoring Object methods when loading interface.
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
package test;
|
||||
|
||||
public interface InterfaceWithObjectMethods {
|
||||
int hashCode();
|
||||
boolean equals(Object obj);
|
||||
Object clone();
|
||||
String toString();
|
||||
void finalize();
|
||||
}
|
||||
Reference in New Issue
Block a user