Files
kotlin/compiler/testData/codegen/box/callableReference/bound/inline/simpleVal.kt
2016-11-09 21:41:12 +03:00

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)
}