github.com/amarpal/go-tools@v0.0.0-20240422043104-40142f59f616/staticcheck/sa1007/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  }