Files
kotlin-fork/compiler/testData/codegen/box/callableReference/bound/inline/simple.kt
T
2018-06-28 12:26:41 +02:00

7 lines
115 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
inline fun foo(x: () -> String) = x()
fun String.id() = this
fun box() = foo("OK"::id)