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

7 lines
73 B
Kotlin

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