Files
kotlin-fork/j2k/testData/fileOrElement/detectProperties/DifferentFieldNameAndSuperClass.kt
T
2015-09-25 13:02:46 +03:00

11 lines
168 B
Kotlin
Vendored

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