fsharp
fsharp copied to clipboard
Wrong "Parameter name doesn't match signature" warning
Consider these signature and implementation files:
module Module
val g: c: (int * int) -> unit
module Module
let g (a, b) = a + b |> ignore
The warning is reported for one of the implementation parameters instead of the whole tuple: