Files
kotlin-fork/j2k/testData/fileOrElement/detectProperties/DifferentFieldNameAndSuperClass.kt
T
2016-03-31 14:51:57 +03:00

10 lines
146 B
Kotlin
Vendored

open class Base internal constructor(x: Int) {
var x = 42
init {
this.x = x
}
}
internal class Derived(b: Base) : Base(b.x)