Wrong "Parameter name doesn't match signature" warning
Open
Area-Diagnostics
Feature Improvement
- Dominant language
- F#
- Stars
- 4.3k
- Forks
- 876
- Avg merge
- 4d 22h
- Merged PRs (30d)
- 144
Description
Consider these signature and implementation files:
```fsharp
module Module
val g: c: (int * int) -> unit
```
```fsharp
module Module
let g (a, b) = a + b |> ignore
```
The warning is reported for one of the implementation parameters instead of the whole tuple:
Contributor guide
Assessment
This issue has not been assessed yet.