]> Cypherpunks repositories - gostls13.git/commit
cmd/compile: use "cannot use %s as %s value in %s: %s" error message
authorRobert Griesemer <gri@golang.org>
Wed, 28 Sep 2022 21:13:24 +0000 (14:13 -0700)
committerGopher Robot <gobot@golang.org>
Wed, 28 Sep 2022 22:28:39 +0000 (22:28 +0000)
commit7997e5f2540deb03a88a2f68f83bb5e5b7d6f77e
tree9751a58de41b9d7a292a40d9f3b31224d5f0d3b8
parent435652b468f0b71266f760490896ac3e9cf46eba
cmd/compile: use "cannot use %s as %s value in %s: %s" error message

This is close to what the compiler used to say, except now we say
"as T value" rather than "as type T" which is closer to the truth
(we cannot use a value as a type, after all). Also, place the primary
error and the explanation (cause) on a single line.

Make respective (single line) adjustment to the matching "cannot
convert" error.

Adjust various tests.

For #55326.

Change-Id: Ib646cf906b11f4129b7ed0c38cf16471f9266b88
Reviewed-on: https://go-review.googlesource.com/c/go/+/436176
Reviewed-by: Robert Griesemer <gri@google.com>
Run-TryBot: Robert Griesemer <gri@google.com>
Auto-Submit: Robert Griesemer <gri@google.com>
Reviewed-by: Robert Findley <rfindley@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
12 files changed:
src/cmd/compile/internal/types2/assignments.go
src/cmd/compile/internal/types2/conversions.go
src/go/types/assignments.go
src/go/types/conversions.go
src/internal/types/testdata/spec/conversions.go
test/alias2.go
test/append1.go
test/ddd1.go
test/fixedbugs/bug389.go
test/fixedbugs/issue17645.go
test/fixedbugs/issue48471.go
test/fixedbugs/issue5358.go