mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
11 lines
181 B
Kotlin
Vendored
11 lines
181 B
Kotlin
Vendored
// FORCED
|
|
open class X {
|
|
override fun equals(other: Any?) = super.equals(other)
|
|
override fun hashCode() = super.hashCode()
|
|
}
|
|
|
|
class A : X() {<caret>
|
|
fun foo() {
|
|
|
|
}
|
|
} |