mirror of
https://github.com/golang/go
synced 2024-11-19 03:44:40 -07:00
6e064ea0cf
Updates golang/go#35563 Change-Id: I88ae3f742daf5043d4784fe8827454fb1ce1f9db Reviewed-on: https://go-review.googlesource.com/c/tools/+/209337 Reviewed-by: Rebecca Stambler <rstambler@golang.org> Run-TryBot: Rebecca Stambler <rstambler@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
26 lines
748 B
Go
26 lines
748 B
Go
package links
|
|
|
|
import (
|
|
"fmt" //@link(`fmt`,"https://pkg.go.dev/fmt")
|
|
|
|
"golang.org/x/tools/internal/lsp/foo" //@link(`golang.org/x/tools/internal/lsp/foo`,`https://pkg.go.dev/golang.org/x/tools/internal/lsp/foo`)
|
|
|
|
_ "database/sql" //@link(`database/sql`, `https://pkg.go.dev/database/sql`)
|
|
|
|
errors "golang.org/x/xerrors" //@link(`golang.org/x/xerrors`, `https://pkg.go.dev/golang.org/x/xerrors`)
|
|
)
|
|
|
|
var (
|
|
_ fmt.Formatter
|
|
_ foo.StructFoo
|
|
_ errors.Formatter
|
|
)
|
|
|
|
// Foo function
|
|
func Foo() string {
|
|
/*https://example.com/comment */ //@link("https://example.com/comment","https://example.com/comment")
|
|
|
|
url := "https://example.com/string_literal" //@link("https://example.com/string_literal","https://example.com/string_literal")
|
|
return url
|
|
}
|