blob: e7ebda33ee5b0bff6094d6f2ef41071ad8070571 [file] [log] [blame]
env GO111MODULE=off
# go test -c -o NUL
# should work (see golang.org/issue/28035).
cd x
go test -o=$devnull -c
! exists x.test$exe
-- x/x_test.go --
package x_test
import (
"testing"
)
func TestNUL(t *testing.T) {
}