mirror of https://github.com/golang/go.git
15 lines
749 B
Go
15 lines
749 B
Go
// Package missingtwodep does something
|
|
package missingtwodep
|
|
|
|
import (
|
|
"example.com/anothermodule/hey" //@diag("\"example.com/anothermodule/hey\"", "go mod tidy", "example.com/anothermodule is not in your go.mod file.", "warning"),suggestedfix("\"example.com/anothermodule/hey\"")
|
|
"example.com/extramodule/pkg" //@diag("\"example.com/extramodule/pkg\"", "go mod tidy", "example.com/extramodule is not in your go.mod file.", "warning"),suggestedfix("\"example.com/extramodule/pkg\"")
|
|
"example.com/extramodule/yo" //@diag("\"example.com/extramodule/yo\"", "go mod tidy", "example.com/extramodule is not in your go.mod file.", "warning"),suggestedfix("\"example.com/extramodule/yo\"")
|
|
)
|
|
|
|
func Yo() {
|
|
_ = pkg.Test
|
|
_ = yo.Test
|
|
_ = hey.Test
|
|
}
|