Rename: Fixed rename of Java getters/setters through synthetic property references in Kotlin

#KT-8817 Fixed
This commit is contained in:
Alexey Sedunov
2016-04-19 19:01:04 +03:00
parent a45165838a
commit cc5c3c2353
27 changed files with 311 additions and 6 deletions
@@ -0,0 +1,5 @@
fun test(bean: Bean) {
bean.prop2 = "a"
println(bean.prop2)
bean.prop2 += "a"
}