Inline Property supported for properties with setter

#KT-2638 Fixed
This commit is contained in:
Valentin Kipyatkov
2017-05-23 15:26:04 +03:00
parent e6bfa55534
commit ab1b985bac
16 changed files with 181 additions and 66 deletions
@@ -0,0 +1,8 @@
class A {
var property = 10
private set
fun f() {
println(<caret>property)
}
}