Files
kotlin-fork/compiler/testData/codegen/box/delegatedProperty/delegateToAnother/kt50019_noOptimizedCallableReferences.kt
T
2021-12-08 03:15:49 +01:00

10 lines
125 B
Kotlin
Vendored

// WITH_STDLIB
// NO_OPTIMIZED_CALLABLE_REFERENCES
class A {
val x = "OK"
val y by ::x
}
fun box(): String = A().y