Files
kotlin/compiler/testData/codegen/box/callableReference/function/topLevelFromTopLevelStringOneStringArg.kt
2018-08-09 14:22:50 +03:00

7 lines
83 B
Kotlin
Vendored

fun foo(x: String) = x
fun box(): String {
val x = ::foo
return x("OK")
}