1 2 3 4 5 6 7 8 9
pub fn main() void { var b: bool = true; b = b or false; if (!b) unreachable; return; } // run //