**Describe Your Feature** Break statements that allow breaking out of loops **Provide a Code Snippet Using Your Feature** ```rust fn main() { while true { break; } } ``` **Additional Information** This can be implemented in the compiler as a jump to this block's end. Match statements may struggle with this.