mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
10 lines
183 B
Kotlin
Vendored
10 lines
183 B
Kotlin
Vendored
open class X {
|
|
override fun equals(other: Any?) = super.equals(other)
|
|
override fun hashCode() = super.hashCode()
|
|
}
|
|
|
|
class A(val n: Int) : X() {<caret>
|
|
fun foo() {
|
|
|
|
}
|
|
} |