Files
kotlin/compiler/testData/codegen/box/callableReference/topLevelFromTopLevelStringOneStringArg.kt
Alexander Udalov 054e5fb5e7 Codegen for callable reference expressions
#KT-1183 In Progress
2013-04-22 17:59:32 +04:00

7 lines
83 B
Kotlin

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