mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
9 lines
189 B
Kotlin
Vendored
9 lines
189 B
Kotlin
Vendored
interface IA {
|
|
override fun toString(): String = "IA"
|
|
|
|
override fun equals(other: Any?): Boolean = super.equals(other)
|
|
|
|
override fun hashCode(): Int {
|
|
return 42;
|
|
}
|
|
} |