Files
kotlin/compiler/testData/codegen/box/functions/localFunctions/overloadedLocalFunWithoutClosure.kt
2019-11-19 11:00:09 +03:00

9 lines
152 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
fun box(): String {
fun foo(x: String) = x
fun foo() = foo("K")
return run {
foo("O") + foo()
}
}