mirror of
https://github.com/golang/go
synced 2024-11-19 00:44:40 -07:00
3b6f9c0030
Change-Id: Ib2eef50047dfcc64110c264e77d648f959613b88 Reviewed-on: https://go-review.googlesource.com/c/tools/+/173698 Run-TryBot: Ian Cottrell <iancottrell@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
13 lines
232 B
Go
13 lines
232 B
Go
package links
|
|
|
|
import (
|
|
"fmt" //@link(re`".*"`,"https://godoc.org/fmt")
|
|
|
|
"golang.org/x/tools/internal/lsp/foo" //@link(re`".*"`,"https://godoc.org/golang.org/x/tools/internal/lsp/foo")
|
|
)
|
|
|
|
var (
|
|
_ fmt.Formatter
|
|
_ foo.StructFoo
|
|
)
|