fsharp icon indicating copy to clipboard operation
fsharp copied to clipboard

Wrong "Parameter name doesn't match signature" warning

Open auduchinok opened this issue 3 years ago • 0 comments

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:

Screenshot 2022-10-03 at 15 42 06

auduchinok avatar Oct 03 '22 13:10 auduchinok