Support references to top level and member properties in JVM codegen
#KT-1183 In Progress
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
open class Base {
|
||||
open val foo = "Base"
|
||||
}
|
||||
|
||||
class Derived : Base() {
|
||||
override val foo = "OK"
|
||||
}
|
||||
|
||||
fun box() = (Base::foo).get(Derived())
|
||||
Reference in New Issue
Block a user