Files
kotlin/compiler/testData/codegen/box/callableReference/function/topLevelFromTopLevelStringNoArgs.kt
2018-06-28 12:26:41 +02:00

8 lines
99 B
Kotlin
Vendored

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