blob: 1842d8cea3e396f59f287007cb4d5554ce80e481 [file] [log] [blame]
env GO111MODULE=off
# check that error for missing binary-only says where it should be
! go build b
stderr pkg[\\/].*a\.a
-- a/a.go --
//go:binary-only-package
package a
-- b/b.go --
package b; import "a"