19 lines
218 B
Kotlin
Vendored
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() |