Fix for KT-8928: NoSuchMethodError on private property setter in companion object

#KT-8928 Fixed
This commit is contained in:
Michael Bogdanov
2015-11-03 13:10:48 +03:00
parent 559b85caa8
commit 86f8845c00
3 changed files with 32 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
class App {
fun init() {
s = "OK"
}
companion object {
var s: String = "Fail"
private set
}
}
fun box(): String {
App().init()
return App.s
}