Files
kotlin/compiler/testData/codegen/box/callableReference/function/topLevelFromTopLevelStringOneStringArg.kt
2019-11-19 11:00:09 +03:00

8 lines
113 B
Kotlin
Vendored

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