Files
kotlin-fork/compiler/testData/codegen/boxInline/delegatedProperty/kt48498.kt
T
2023-12-26 10:18:19 +00:00

21 lines
308 B
Kotlin
Vendored

// JVM_ABI_K1_K2_DIFF: KT-62464
// FILE: 1.kt
package x
operator fun String.provideDelegate(thisRef: Any?, prop: Any?) = this
operator fun String.getValue(thisRef: Any?, prop: Any?) = this
inline fun foo(): String {
val x by "OK"
return x
}
// FILE: 2.kt
import x.*
fun box(): String = foo()