blob: b22d1fd35063bae9ee6ccf198992be4598d262d2 [file] [log] [blame]
// Package missingdep does something
package missingdep
import (
"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\"")
)
func Yo() {
_ = pkg.Test
}