Files
kotlin/compiler/testData/codegen/boxInline/callableReference/bound/simpleVal.kt
2019-06-04 14:56:13 +02:00

17 lines
189 B
Kotlin
Vendored

// FILE: 1.kt
package test
inline fun go(f: () -> String) = f()
fun String.id(): String = this
// FILE: 2.kt
import test.*
fun box(): String {
val x = "OK"
return go(x::id)
}