honnef.co/go/tools@v0.4.7/staticcheck/testdata/src/example.com/CheckURLs/CheckURLs.go (about) 1 package pkg 2 3 import "net/url" 4 5 func fn() { 6 url.Parse("foobar") 7 url.Parse(":") //@ diag(`is not a valid URL`) 8 url.Parse("https://golang.org") 9 }