blob: a680bf6c178758268c9883d4552a8a17dffb6938 [file] [log] [blame]
fun a(x: Int) {
val t = if (x > 0) {
val i = x + x
i - 1
} else x * x + 1
}