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
The lines with fmt.Println("not tracked") are not tracked.
fmt.Println("not tracked")
a.go
package main import "fmt" func a(f func()) error { return nil } func main() { if err := a(func() { fmt.Println("not tracked") fmt.Println("not tracked") }); err != nil { fmt.Println(err) } }
a_test.go
package main import ( "testing" ) func TestA(t *testing.T) { }
The text was updated successfully, but these errors were encountered:
CL https://golang.org/cl/19775 mentions this issue.
Sorry, something went wrong.
e7f6d8b
No branches or pull requests
Source
The lines with
fmt.Println("not tracked")
are not tracked.a.go
a_test.go
The text was updated successfully, but these errors were encountered: