321fd80219
Add a loop {} construct for infinite loops, and use it in test cases. See #1906 for details.
4 lines
75 B
Rust
4 lines
75 B
Rust
fn int_id(x: int) -> int { ret x; }
|
|
|
|
fn main() { loop { int_id(break); } }
|