1 2 3 4 5 6 7 8 9 10 11 12
func main(a, b i64) i64 { let x i64, y bool if true { let t = a a := b b := t x := 3 } else { //x := 2 } return x }