b06b3ab4c4
#KT-4002 Fixed
26 lines
403 B
Plaintext
26 lines
403 B
Plaintext
trait Some {
|
|
fun foo()
|
|
}
|
|
|
|
class Other {
|
|
override fun equals(other: Any?): Boolean {
|
|
<selection><caret>return super<Any>.equals(other)</selection>
|
|
}
|
|
|
|
override fun hashCode(): Int {
|
|
return super<Any>.hashCode()
|
|
}
|
|
|
|
override fun toString(): String {
|
|
return super<Any>.toString()
|
|
}
|
|
|
|
fun test() {
|
|
val a = 1
|
|
}
|
|
fun otherTest() {
|
|
|
|
}
|
|
}
|
|
|