15 lines
257 B
Kotlin
Vendored
15 lines
257 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
// CHECK_BYTECODE_LISTING
|
|
// FIR_IDENTICAL
|
|
|
|
// MODULE: lib
|
|
// FILE: file1.kt
|
|
val impl = 123
|
|
|
|
// MODULE: main(lib)
|
|
// FILE: file2.kt
|
|
operator fun Any?.getValue(thisRef: Any?, property: Any?) = "OK"
|
|
|
|
val s: String by impl
|
|
|
|
fun box() = s |