aboutsummaryrefslogtreecommitdiff
path: root/test/ddd1.go
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2010-02-05 18:38:27 -0800
committerIan Lance Taylor <iant@golang.org>2010-02-05 18:38:27 -0800
commit635093e4b178c2605604bb1a33456540c7f7e740 (patch)
treef26823cd55d45d29ed18dd62174a70525a2a95f2 /test/ddd1.go
parent4fdab8517827a676a4711e586221a4cefd307fb4 (diff)
downloadgo-635093e4b178c2605604bb1a33456540c7f7e740.tar.gz
go-635093e4b178c2605604bb1a33456540c7f7e740.zip
Match gccgo error messages.
ddd1.go:16:10: error: argument 1 has incompatible type ddd1.go:17:10: error: argument 1 has incompatible type ddd1.go:15:10: error: floating point constant truncated to integer R=rsc CC=golang-dev https://golang.org/cl/204048
Diffstat (limited to 'test/ddd1.go')
-rw-r--r--test/ddd1.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ddd1.go b/test/ddd1.go
index 4f830c582f..6f714c078a 100644
--- a/test/ddd1.go
+++ b/test/ddd1.go
@@ -13,8 +13,8 @@ var (
_ = sum()
_ = sum(1.0, 2.0)
_ = sum(1.5) // ERROR "integer"
- _ = sum("hello") // ERROR "convert"
- _ = sum([]int{1}) // ERROR "slice literal.*as type int"
+ _ = sum("hello") // ERROR "convert|incompatible"
+ _ = sum([]int{1}) // ERROR "slice literal.*as type int|incompatible"
)
type T []T