Describe Your Feature
Break statements that allow breaking out of loops
Provide a Code Snippet Using Your Feature
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.
Describe Your Feature
Break statements that allow breaking out of loops
Provide a Code Snippet Using Your Feature
Additional Information
This can be implemented in the compiler as a jump to this block's end. Match statements may struggle with this.