]> Cypherpunks repositories - gostls13.git/commit
cmd/compile/internal/types2: slice-to-array-pointer conversion requires go1.17
authorRobert Griesemer <gri@golang.org>
Thu, 29 Apr 2021 17:02:01 +0000 (10:02 -0700)
committerRobert Griesemer <gri@golang.org>
Thu, 29 Apr 2021 23:41:22 +0000 (23:41 +0000)
commita9705e157beb51574233e23cc2e2a412d4681a15
tree806bf6aae5bce9f756791fad689aa30c41419e52
parente99dfb0e5cd964c94d946cabeca9856634416737
cmd/compile/internal/types2: slice-to-array-pointer conversion requires go1.17

Add missing version check. Even though this is a new types2 error
we separate between the compiler and the types2 error message: we
have the compiler error message to match the compiler style, and
we have a types2-specific error message to match the types2 style
for these kinds of errors (for now).

Eventually we need to decide which style we like better and clean
this up.

Follow-up on https://golang.org/cl/301650.

Updates #395.

Change-Id: I5b779f345994c66b1f4a4db466466f98b7d3c491
Reviewed-on: https://go-review.googlesource.com/c/go/+/315169
Trust: Robert Griesemer <gri@golang.org>
Reviewed-by: Robert Findley <rfindley@google.com>
src/cmd/compile/internal/types2/conversions.go
src/cmd/compile/internal/types2/decl.go
src/cmd/compile/internal/types2/testdata/check/go1_16.src [new file with mode: 0644]