github.com/zxy12/go_duplicate_112_new@v0.0.0-20200807091221-747231827200/src/cmd/go/testdata/script/binary_only.txt (about)

     1  # check that error for missing binary-only says where it should be
     2  ! go build b
     3  stderr pkg[\\/].*a\.a
     4  
     5  -- a/a.go --
     6  //go:binary-only-package
     7  
     8  package a
     9  -- b/b.go --
    10  package b; import "a"