mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-15 20:45:45 +03:00
15 lines
149 B
Rust
15 lines
149 B
Rust
|
|
fn main() {
|
|
loop {
|
|
return some_val;
|
|
}
|
|
|
|
let x = loop {
|
|
do_forever();
|
|
};
|
|
|
|
loop {
|
|
// Just comments
|
|
}
|
|
}
|