]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/compile: better error message for invalid untyped operation
authorCuong Manh Le <cuong.manhle.vn@gmail.com>
Tue, 15 Jun 2021 14:40:49 +0000 (21:40 +0700)
committerCuong Manh Le <cuong.manhle.vn@gmail.com>
Wed, 16 Jun 2021 06:05:23 +0000 (06:05 +0000)
For typed vs un-typed operation, the compiler do the conversion
un-conditionally, so if the operation is invalid, the error report is
pointed to the conversion, instead of the invalid operation itself.

To fix this, only do the conversion when the operations are valid
for both types.

Fixes #46749

Change-Id: Ib71c7bcd3ed5454e6df55b6a8db4e0f189259ba7
Reviewed-on: https://go-review.googlesource.com/c/go/+/328050
Trust: Cuong Manh Le <cuong.manhle.vn@gmail.com>
Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
src/cmd/compile/internal/typecheck/const.go
test/fixedbugs/issue46749.go [new file with mode: 0644]
test/run.go

index 5a35eeade9fe6c67e457f7c7f2b7bccd0e91b94b..761b043794062d7dbb4c985d99319b35ba24f3eb 100644 (file)
@@ -633,6 +633,17 @@ func defaultlit2(l ir.Node, r ir.Node, force bool) (ir.Node, ir.Node) {
        if l.Type() == nil || r.Type() == nil {
                return l, r
        }
+
+       if !l.Type().IsInterface() && !r.Type().IsInterface() {
+               // Can't mix bool with non-bool, string with non-string.
+               if l.Type().IsBoolean() != r.Type().IsBoolean() {
+                       return l, r
+               }
+               if l.Type().IsString() != r.Type().IsString() {
+                       return l, r
+               }
+       }
+
        if !l.Type().IsUntyped() {
                r = convlit(r, l.Type())
                return l, r
@@ -647,17 +658,10 @@ func defaultlit2(l ir.Node, r ir.Node, force bool) (ir.Node, ir.Node) {
                return l, r
        }
 
-       // Can't mix bool with non-bool, string with non-string, or nil with anything (untyped).
-       if l.Type().IsBoolean() != r.Type().IsBoolean() {
-               return l, r
-       }
-       if l.Type().IsString() != r.Type().IsString() {
-               return l, r
-       }
+       // Can't mix nil with anything untyped.
        if ir.IsNil(l) || ir.IsNil(r) {
                return l, r
        }
-
        t := defaultType(mixUntyped(l.Type(), r.Type()))
        l = convlit(l, t)
        r = convlit(r, t)
diff --git a/test/fixedbugs/issue46749.go b/test/fixedbugs/issue46749.go
new file mode 100644 (file)
index 0000000..63ed197
--- /dev/null
@@ -0,0 +1,37 @@
+// errorcheck
+
+// Copyright 2021 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package p
+
+var s string
+var b bool
+var i int
+var iface interface{}
+
+var (
+       _ = "" + b   // ERROR "invalid operation.*mismatched types.*untyped string and bool"
+       _ = "" + i   // ERROR "invalid operation.*mismatched types.*untyped string and int"
+       _ = "" + nil // ERROR "invalid operation.*mismatched types.*untyped string and nil"
+)
+
+var (
+       _ = s + false // ERROR "invalid operation.*mismatched types.*string and untyped bool"
+       _ = s + 1     // ERROR "invalid operation.*mismatched types.*string and untyped int"
+       _ = s + nil   // ERROR "invalid operation.*mismatched types.*string and nil"
+)
+
+var (
+       _ = "" + false // ERROR "invalid operation.*mismatched types.*untyped string and untyped bool"
+       _ = "" + 1     // ERROR "invalid operation.*mismatched types.*untyped string and untyped int"
+)
+
+var (
+       _ = b + 1         // ERROR "invalid operation.*mismatched types.*bool and untyped int"
+       _ = i + false     // ERROR "invalid operation.*mismatched types.*int and untyped bool"
+       _ = iface + 1     // ERROR "invalid operation.*mismatched types.*interface {} and int"
+       _ = iface + 1.0   // ERROR "invalid operation.*mismatched types.*interface {} and float64"
+       _ = iface + false // ERROR "invalid operation.*mismatched types.*interface {} and bool"
+)
index 5e60de762482b2d33ab3f483492cc57c137c410d..d7f5d02391b67dbf2641af524889520c705761b3 100644 (file)
@@ -2002,4 +2002,5 @@ var excluded = map[string]bool{
        "fixedbugs/issue7525c.go":  true, // types2 reports init cycle error on different line - ok otherwise
        "fixedbugs/issue7525d.go":  true, // types2 reports init cycle error on different line - ok otherwise
        "fixedbugs/issue7525e.go":  true, // types2 reports init cycle error on different line - ok otherwise
+       "fixedbugs/issue46749.go":  true, // types2 reports can not convert error instead of type mismatched
 }