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 @@
|
||||
abstract class Base {
|
||||
val result = "OK"
|
||||
}
|
||||
|
||||
class Derived : Base()
|
||||
|
||||
fun box(): String {
|
||||
return (Base::result).get(Derived())
|
||||
}
|
||||
Reference in New Issue
Block a user