mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 00:21:35 +00:00
9 lines
185 B
Kotlin
Vendored
9 lines
185 B
Kotlin
Vendored
// TODO: muted automatically, investigate should it be ran for JS or not
|
|
// IGNORE_BACKEND: JS
|
|
|
|
inline fun foo(x: () -> String) = x()
|
|
|
|
fun String.id() = this
|
|
|
|
fun box() = foo("OK"::id)
|