a59021a25e
#KT-18786 fixed
11 lines
127 B
Kotlin
Vendored
11 lines
127 B
Kotlin
Vendored
class B {
|
|
|
|
var yy = ""
|
|
private set
|
|
|
|
internal fun foo(a: AAA) {
|
|
a.x = a.x + 1
|
|
yy += "a"
|
|
}
|
|
}
|