7 lines
115 B
Kotlin
Vendored
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)
|