mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 00:21:26 +00:00
15 lines
187 B
Kotlin
Vendored
15 lines
187 B
Kotlin
Vendored
// KOTLIN_CONFIGURATION_FLAGS: +JVM.DISABLE_OPTIMIZATION
|
|
|
|
fun consume(i: Int) {}
|
|
|
|
fun foo(a: Boolean) {
|
|
var b = 1
|
|
if (a) {
|
|
b = 2
|
|
}
|
|
|
|
consume(b)
|
|
}
|
|
|
|
// 0 GOTO
|
|
// 1 IF |