Files

5 lines
91 B
Kotlin
Vendored

fun test(bean: Bean) {
bean.prop2 = "a"
println(bean.prop2)
bean.prop2 += "a"
}