Content-Length: 24072 | pFad | https://doc.rust-lang.org/std/iter/../clone/../../../std/../error_codes/./E0590.html

E0590 - Error codes index

Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Error code E0590

break or continue keywords were used in a condition of a while loop without a label.

Erroneous code code:

#![allow(unused)]
fn main() {
while break {}
}

break or continue must include a label when used in the condition of a while loop.

To fix this, add a label specifying which loop is being broken out of:

#![allow(unused)]
fn main() {
'foo: while break 'foo {}
}








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: https://doc.rust-lang.org/std/iter/../clone/../../../std/../error_codes/./E0590.html

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy