Files
kotlin-fork/compiler/testData/codegen/box/functions/localFunctions/nameClash.kt
T
2020-01-21 12:50:55 +03:00

13 lines
233 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
fun test(b: Boolean): String {
if (b) {
fun result() = "OK"
return result()
} else {
fun result() = "Fail"
return result()
}
}
fun box(): String = test(true)