aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/test_syntax_error_says_fail.txt
blob: 29fa805b4347236c3468a67a08e23e067cfbd93a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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) {
}