Files
kotlin-fork/j2k/testData/multiFile/GetterAndSetterUsages/2.kt
T

9 lines
125 B
Kotlin
Vendored

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