Files
kotlin-fork/js/js.translator/testData/sourcemap/emptyIfInsideInlineLambda.kt
T

19 lines
218 B
Kotlin
Vendored

package foo
fun test1(): String {
run {
if (false) {
}
}
return "O"
}
fun test2(): String {
1.let {
if (false) {
}
}
return "K"
}
fun box() = test1() + test2()