Files
kotlin-fork/j2k/testData/multiFile/GetterAndSetterUsages/2.kt
T
2017-07-20 01:15:15 +03:00

11 lines
127 B
Kotlin
Vendored

class B {
var yy = ""
private set
internal fun foo(a: AAA) {
a.x = a.x + 1
yy += "a"
}
}