Files
kotlin-fork/nj2k/testData/newJ2k/postProcessing/SyntheticExtensionPropertyAccess.kt
T
2019-04-03 11:24:19 +03:00

16 lines
321 B
Kotlin
Vendored

import javaApi.Base
internal class C : Base() {
fun f() {
val other = Base()
val value = other.property + property
other.property = 1
property = other.property + value
getBase(property).property = 0
}
private fun getBase(i: Int): Base {
return Base()
}
}