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

7 lines
73 B
Kotlin
Vendored

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