ee45933e33
In particular, we should not cache classes or instances for property references, since they may be used inside of inline funtions. This also allows us to mark the $$delegatedProperties array as package private.
10 lines
154 B
Kotlin
Vendored
10 lines
154 B
Kotlin
Vendored
class A {
|
|
val foo = ""
|
|
|
|
val bar = A::foo
|
|
}
|
|
|
|
// TESTED_OBJECT_KIND: class
|
|
// TESTED_OBJECTS: A$bar$1
|
|
// FLAGS: ACC_FINAL, ACC_SUPER, ACC_SYNTHETIC
|