Files
kotlin/compiler/testData/codegen/box/callableReference/bound/inline/simpleVal.kt
2016-11-28 16:33:58 +03:00

9 lines
130 B
Kotlin
Vendored

inline fun go(f: () -> String) = f()
fun String.id(): String = this
fun box(): String {
val x = "OK"
return go(x::id)
}