The following code: ``` rust fn main() { for _ in 0 .. 2 { break(); } } ``` Returns the following error (on all rustc versions): ``` bash error: the type of this value must be known in this context ``` Which is really strange. The same error occurs with "continue();".