Files
kotlin/compiler/testData/codegen/box/functions/localFunctions/overloadedLocalFunWithoutClosure.kt
2018-08-15 13:35:14 +03:00

8 lines
122 B
Kotlin
Vendored

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