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 ```