mirror of
https://github.com/golang/go
synced 2024-11-19 07:24:42 -07:00
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
|
||
|
)
|