Files
kotlin-fork/compiler/testData/codegen/boxInline/delegatedProperty/kt48498.kt
T
2023-03-14 20:47:46 +00:00

20 lines
300 B
Kotlin
Vendored

// IGNORE_INLINER_K2: IR
// 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()