Fix for KT-15446: Property reference on an instance of subclass causes java.lang.VerifyError
#KT-15446 Fixed
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
open class A {
|
||||
var f: String = "OK"
|
||||
}
|
||||
|
||||
class B : A() {
|
||||
}
|
||||
|
||||
fun box() : String {
|
||||
val b = B()
|
||||
return (b::f).get()
|
||||
}
|
||||
Reference in New Issue
Block a user