We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From microsoft/vscode-go#634 by @heliorosa
For the following program, the declaration for bigAdd is shown as bigAdd func(x, y *Int) *Int instead of bigAdd func(z, x, y *Int) *Int.
bigAdd
bigAdd func(x, y *Int) *Int
bigAdd func(z, x, y *Int) *Int
package main import ( "fmt" "math/big" ) func main() { bigAdd := (*big.Int).Add a := big.NewInt(1) b := big.NewInt(2) c := bigAdd(new(big.Int), a, b) fmt.Println(a) fmt.Println(b) fmt.Println(c) }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
From microsoft/vscode-go#634 by @heliorosa
For the following program, the declaration for
bigAdd
is shown asbigAdd func(x, y *Int) *Int
instead ofbigAdd func(z, x, y *Int) *Int
.The text was updated successfully, but these errors were encountered: