mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 15:51:01 +00:00
9 lines
178 B
Java
Vendored
9 lines
178 B
Java
Vendored
package test;
|
|
|
|
public interface InterfaceWithObjectMethods {
|
|
int hashCode();
|
|
boolean equals(Object obj);
|
|
Object clone();
|
|
String toString();
|
|
void finalize();
|
|
} |