_offc_bisect_if_else.nx source
↩ module page · 7 lines · 149 B
1// _offc_bisect_if_else.nx -- Bar-3 feature bisect: if_else_branch
2
3func main() -> i64 {
4 let x: i64 = 5
5 if x > 3 { return 0 }
6 return 1
7}