9f845f0de4
#KT-4892 Fixed
27 lines
389 B
Plaintext
27 lines
389 B
Plaintext
trait 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() {
|
|
|
|
}
|
|
}
|
|
|