KT-3118 NoSuchFieldError on private property without backing field &&
KT-3551 Wrong synthetic accessor implementation
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
class Identifier() {
|
||||
private var myNullable : Boolean = false
|
||||
set(l : Boolean) {
|
||||
//do nothing
|
||||
}
|
||||
|
||||
fun getValue() : Boolean {
|
||||
return myNullable
|
||||
}
|
||||
|
||||
class object {
|
||||
fun init(isNullable : Boolean) : Identifier {
|
||||
val id = Identifier()
|
||||
id.myNullable = isNullable
|
||||
return id
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fun box() : String {
|
||||
val id = Identifier.init(true)
|
||||
return if (id.getValue() == false) return "OK" else "fail"
|
||||
}
|
||||
Reference in New Issue
Block a user