mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
12 lines
160 B
Kotlin
Vendored
12 lines
160 B
Kotlin
Vendored
fun testIf() {
|
|
if (todo()) 1 else 2
|
|
}
|
|
|
|
fun testIf1(b: Boolean) {
|
|
if (b) todo() else 1
|
|
|
|
bar()
|
|
}
|
|
|
|
fun todo(): Nothing = throw Exception()
|
|
fun bar() {} |