mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-05-01 15:31:25 +03:00
e761e0ac18
This allows `break` statements to be directly translated from the original C. Add a break statement as the last statement of the while loop to ensure we don't have an infinite loop if no breaks / returns are hit in the switch. Fixes #8387