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

8 lines
109 B
Kotlin
Vendored

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