mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
27 lines
393 B
Plaintext
Vendored
27 lines
393 B
Plaintext
Vendored
interface Some {
|
|
fun foo()
|
|
}
|
|
|
|
class Other {
|
|
fun test() {
|
|
val a = 1
|
|
}
|
|
|
|
override fun equals(other: Any?): Boolean {
|
|
<selection><caret>return super.equals(other)</selection>
|
|
}
|
|
|
|
override fun hashCode(): Int {
|
|
return super.hashCode()
|
|
}
|
|
|
|
override fun toString(): String {
|
|
return super.toString()
|
|
}
|
|
|
|
fun otherTest() {
|
|
|
|
}
|
|
}
|
|
|