``` rust 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 ``` rust fn main() { break } ``` ``` error: `break` outside of loop ```