mirror of
https://github.com/ziglang/zig.git
synced 2026-03-12 14:19:55 +00:00
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