mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 11:36:54 -04:00
8 lines
93 B
Rust
8 lines
93 B
Rust
|
|
fn foo(x: i32) {
|
||
|
|
if (x > 10) {
|
||
|
|
return 10;
|
||
|
|
} else {
|
||
|
|
return x;
|
||
|
|
}
|
||
|
|
}
|