diff options
Diffstat (limited to 'test/fixedbugs/issue3925.go')
-rw-r--r-- | test/fixedbugs/issue3925.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixedbugs/issue3925.go b/test/fixedbugs/issue3925.go index 2f8786fc7..a62d4392e 100644 --- a/test/fixedbugs/issue3925.go +++ b/test/fixedbugs/issue3925.go @@ -12,12 +12,12 @@ package foo var _ = map[string]string{ "1": "2", - "3", "4", // ERROR "missing key" + "3", "4", // ERROR "missing key|must have keys" } var _ = []string{ "foo", "bar", - 20, // ERROR "cannot use" + 20, // ERROR "cannot use|incompatible type" } |