Inspired by this: https://github.com/dotnet/fsharp/issues/11234 Basically suggest changing this code ```fsharp let g a b = "hello" let f a b : string = g a, b ``` or this code ```fsharp let g a b = "hello" let f a b : string = g (a, b) ``` to this ```fsharp let g a b = "hello" let f a b : string = g a b ```
Inspired by this: #11234
Basically suggest changing this code
or this code
to this