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

5 lines
74 B
Kotlin
Vendored

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