mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-12-24 15:59:39 +00:00
This adds support for function calls of the form:
```rust
(
#[attr(...)] 1.2,
#[attr_one(...)]
#[attr_two(...)]
1.5,
... etc ...
)
```
Closes https://github.com/rust-analyzer/rust-analyzer/issues/2801