mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
13 lines
156 B
Kotlin
Vendored
13 lines
156 B
Kotlin
Vendored
package m2
|
|
|
|
import m1.*
|
|
|
|
fun bar(): Int {
|
|
foo { return 100 }
|
|
return -99
|
|
}
|
|
|
|
fun box(): String {
|
|
if (bar() == 100) return "OK"
|
|
return "fail"
|
|
} |