go/internal/lsp/testdata/circular/self.go

13 lines
167 B
Go

package circular //@diag("", "go list", "import cycle not allowed")
import (
"golang.org/x/tools/internal/lsp/circular"
)
func print() {
Test()
}
func Test() {
}