blob: 6d5dd39f0bd476df497dfd1dafd2d675674e9412 [file] [log] [blame]
! go list -export ./...
stderr '^# example.com/p2\np2'${/}'main\.go:7:.*'
! stderr '^go build '
go list -f '{{with .Error}}{{.}}{{end}}' -e -export ./...
! stderr '.'
stdout '^# example.com/p2\np2'${/}'main\.go:7:.*'
go list -export -e -f '{{.ImportPath}} -- {{.Incomplete}} -- {{.Error}}' ./...
stdout 'example.com/p1 -- false -- <nil>'
stdout 'example.com/p2 -- true -- # example.com/p2'
go list -e -export -json=Error ./...
stdout '"Err": "# example.com/p2'
-- go.mod --
module example.com
-- p1/p1.go --
package p1
const Name = "p1"
-- p2/main.go --
package main
import "fmt"
import "example.com/p1"
func main() {
fmt.Println(p1.Name == 5)
}