[Bug, FCS, Tooltips] Parameter name isn't visible in a tooltip when parameter is a tuple
Open
Area-FCS
Bug
Impact-Low
- Dominant language
- F#
- Stars
- 4.3k
- Forks
- 876
- Avg merge
- 4d 11h
- Merged PRs (30d)
- 131
Description
Please provide a succinct description of the issue.
Doesn't work when parameter is a tuple:
``` fsharp
let receivesTuple thisIsAVeryImportantTupleName =
let (a, b) = thisIsAVeryImportantTupleName
a + b
```

But works when parameter is a struct tuple:
``` fsharp
let receivesStructTuple thisIsAVeryImportantTupleName =
let struct (a, b) = thisIsAVeryImportantTupleName
a + b
```

Both in Rider and Visual Studio
Contributor guide
Assessment
This issue has not been assessed yet.