-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Description
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.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
Projects
Status
Medium