blob: 29fa805b4347236c3468a67a08e23e067cfbd93a [file] [log] [blame]
# Test that the error message for a syntax error in a test go file
# says FAIL.
! go test syntaxerror
stderr 'x_test.go:' # check that the error is diagnosed
stdout 'FAIL' # check that go test says FAIL
-- syntaxerror/x.go --
package p
-- syntaxerror/x_test.go --
package p
func f() (x.y, z int) {
}