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
code as follow:
package main import "os" func aa() error { out, err := os.Create("aa") if err != nil { return err } err = out.Close() return nil }
run errcheck is nothing in then console.
error return value not checked
err = out.Close()
The text was updated successfully, but these errors were encountered:
Looks similar to #125. /cc @dominikh
Sorry, something went wrong.
Yeah, that's a duplicate of #125, which itself is a duplicate of #7 (of sorts)
No branches or pull requests
code as follow:
run errcheck is nothing in then console.
error return value not checked
The text was updated successfully, but these errors were encountered: