mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
12 lines
226 B
Kotlin
Vendored
12 lines
226 B
Kotlin
Vendored
// TODO: muted automatically, investigate should it be ran for JS or not
|
|
// IGNORE_BACKEND: JS
|
|
|
|
inline fun go(f: () -> String) = f()
|
|
|
|
fun String.id(): String = this
|
|
|
|
fun box(): String {
|
|
val x = "OK"
|
|
return go(x::id)
|
|
}
|