1
0
mirror of https://github.com/golang/go synced 2024-10-01 18:28:32 -06:00
go/internal/lsp/testdata/indirect/primarymod/main.go

11 lines
126 B
Go
Raw Normal View History

// Package indirect does something
package indirect
import (
"example.com/extramodule/pkg"
)
func Yo() {
var _ pkg.Test
}