The following code compiles (as expected): ``` Ruby fn main() { let _x: uint = loop { }; } ``` However, this code does not, as if the `break` were breaking out of the outer loop: ``` Ruby fn main() { let _x: uint = loop { loop { break; } }; } ```