def main(field x) -> field { return if x == 0 { 0 } else { 1 / x // executed even for x := 0, which leads to the execution failing }; }