func main(a, b i64) i64 { if a < b { let t = a a := b b := t } /* TODO: error on failing to return from a function */ return a + b }