static box IfSelectLocalTest { main() { local x local cond cond = 1 if cond { x = 100 } else { x = 200 } print(x) return 0 } }