Files
kotlin/compiler/testData/codegen/box/callableReference/function/topLevelFromTopLevelStringNoArgs.kt

14 lines
168 B
Kotlin
Vendored

fun foo() = "OK"
fun box(): String {
val x = ::foo
var r = x()
if (r != "OK") return r
r = run(::foo)
if (r != "OK") return r
return "OK"
}