1# The intent here is to verify that 'go test -n' works without crashing. 2# Any test will do. 3 4go test -n x_test.go 5 6-- x_test.go -- 7package x_test 8 9import ( 10 "testing" 11) 12 13func TestEmpty(t *testing.T) { 14}
View as plain text