blob: a1ee8aa256e146ecee982e3b8c0940fbc1a24281 [file] [log] [blame]
env GO111MODULE=on
cd a/
go test
stdout PASS
-- a/go.mod --
module github.com/user/a
-- a/a.go --
package a
-- a/a_test.go --
package a
import "testing"
func Test(t *testing.T) {}