aboutsummaryrefslogtreecommitdiff
path: root/test/used.go
diff options
context:
space:
mode:
authorMatthew Dempsky <mdempsky@google.com>2020-12-23 16:14:59 -0800
committerMatthew Dempsky <mdempsky@google.com>2020-12-25 09:18:20 +0000
commit396b6c2e7c5c368c67e71824471d4f2d48f5c128 (patch)
tree222c878df5c18a10dfe33a0538f313fb946592c8 /test/used.go
parente24d2f3d0513961441904afdf71cafe7808c0be9 (diff)
downloadgo-396b6c2e7c5c368c67e71824471d4f2d48f5c128.tar.gz
go-396b6c2e7c5c368c67e71824471d4f2d48f5c128.zip
[dev.regabi] cmd/compile: cleanup assignment typechecking
The assignment type-checking code previously bounced around a lot between the LHS and RHS sides of the assignment. But there's actually a very simple, consistent pattern to how to type check assignments: 1. Check the RHS expression. 2. If the LHS expression is an identifier that was declared in this statement and it doesn't have an explicit type, give it the RHS expression's default type. 3. Check the LHS expression. 4. Try assigning the RHS expression to the LHS expression, adding implicit conversions as needed. This CL implements this algorithm, and refactors tcAssign and tcAssignList to use a common implementation. It also fixes the error messages to consistently say just "1 variable" or "1 value", rather than occasionally "1 variables" or "1 values". Fixes #43348. Passes toolstash -cmp. Change-Id: I749cb8d6ccbc7d22cd7cb0a381f58a39fc2696b5 Reviewed-on: https://go-review.googlesource.com/c/go/+/280112 Trust: Matthew Dempsky <mdempsky@google.com> Run-TryBot: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com>
Diffstat (limited to 'test/used.go')
-rw-r--r--test/used.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/used.go b/test/used.go
index 5c7aad24a6..76f3fc91cc 100644
--- a/test/used.go
+++ b/test/used.go
@@ -63,6 +63,7 @@ func _() {
_ = f1() // ok
_, _ = f2() // ok
_ = f2() // ERROR "assignment mismatch: 1 variable but f2 returns 2 values"
+ _ = f1(), 0 // ERROR "assignment mismatch: 1 variable but 2 values"
T.M0 // ERROR "T.M0 evaluated but not used"
t.M0 // ERROR "t.M0 evaluated but not used"
cap // ERROR "use of builtin cap not in function call"