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.
fn main() { let x = { break }; }
error: cannot determine a type for this local variable: unconstrained type fn main() { let x = { break }; } ^~~~~~~~~~~~~
I would think this should just emit the same error as
fn main() { break }
error: `break` outside of loop