mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 03:26:52 -04:00
19 lines
210 B
Rust
19 lines
210 B
Rust
fn foo(mut x: i32) {
|
|
while x > 0 {
|
|
x -= 1;
|
|
}
|
|
|
|
for i in 0..3 {
|
|
x += 1;
|
|
}
|
|
|
|
loop {
|
|
x += 1;
|
|
|
|
if x < 100 {
|
|
continue;
|
|
}
|
|
|
|
break;
|
|
}
|
|
}
|