fix(rust): remove if_let from indent captures

fixes https://github.com/nvim-treesitter/nvim-treesitter/issues/3073
This commit is contained in:
kiyan 2022-07-02 11:49:19 +02:00 committed by Stephan Seitz
parent 1b6debcf69
commit 8bc4d046e7
3 changed files with 10 additions and 1 deletions

View file

@ -0,0 +1,7 @@
fn foo() -> i32 {
if let Some(v) = Some(2) {
1
} else {
2
}
}