blob: 4e36b88e859ae531dee7e0f3e70322371b83d74f [file] [log] [blame]
env GO111MODULE=off
# issue 25980: crash in go list -e -test
go list -e -test -f '{{.Error}}' p
stdout '^p[/\\]d_test.go:2:8: cannot find package "d" in any of:'
-- p/d.go --
package d
-- p/d_test.go --
package d_test
import _ "d"