1471602c9f
#KT-50019 Fixed
10 lines
125 B
Kotlin
Vendored
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
|