We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
break
The following code compiles (as expected):
fn main() { let _x: uint = loop { }; }
However, this code does not, as if the break were breaking out of the outer loop:
fn main() { let _x: uint = loop { loop { break; } }; }