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

18 lines
185 B
Kotlin
Vendored

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