summaryrefslogtreecommitdiff
path: root/libgo/go/cmd/go/testdata/script/binary_only.txt
blob: 397904efaa8ab0fc9ebc826d32e8001b985ffb9f (plain)
1
2
3
4
5
6
7
8
9
10
# 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"