nvim-treesitter/tests/indent/rust/tuple.rs
ganhaque 1b050206e4
fix(rust): indentation in multi-line tuple pattern (#6402)
* fix(rust): indentation in multi-line tuple pattern

* test(indent): rust - add test for tuple pattern indent
2024-04-04 15:12:31 +00:00

8 lines
85 B
Rust

fn foo() {
for (
a,
b
) in c.iter() {
// ...
}
}