mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
12 lines
257 B
Kotlin
Vendored
12 lines
257 B
Kotlin
Vendored
data open class TestData(val a: Int) {
|
|
fun some() {}
|
|
}
|
|
|
|
class Derived: TestData(1) {
|
|
val field = component1()
|
|
}
|
|
|
|
// TODO: show component1, component2 functions?
|
|
// TODO: should equals and hashCode be shown as declared in TestData?
|
|
|
|
// WITH_INHERITED |