KT-9717, KT-9603:

pass getter/setter-related flags to AccessorForPropertyDescriptor
This commit is contained in:
Dmitry Petrov
2015-10-26 13:48:55 +03:00
parent e83315f5bc
commit 882827bf04
14 changed files with 291 additions and 43 deletions
+11
View File
@@ -0,0 +1,11 @@
class A {
public var prop = "OK"
private set
fun test(): String {
return { prop }()
}
}
fun box(): String = A().test()