comptime { const x = switch (true) { true => false, }; _ = x; } comptime { const x = switch (true) { false => true, }; _ = x; } // error // backend=stage2 // target=native // // :2:15: error: switch must handle all possibilities // :8:15: error: switch must handle all possibilities