aboutsummaryrefslogtreecommitdiff
path: root/src/go/types/testdata/check/expr2.src
diff options
context:
space:
mode:
Diffstat (limited to 'src/go/types/testdata/check/expr2.src')
-rw-r--r--src/go/types/testdata/check/expr2.src2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/go/types/testdata/check/expr2.src b/src/go/types/testdata/check/expr2.src
index 0c959e8011..f9726b5de5 100644
--- a/src/go/types/testdata/check/expr2.src
+++ b/src/go/types/testdata/check/expr2.src
@@ -10,7 +10,7 @@ func _bool() {
const t = true == true
const f = true == false
_ = t /* ERROR "cannot compare" */ < f
- _ = 0 /* ERROR "cannot convert" */ == t
+ _ = 0 /* ERROR "mismatched types untyped int and untyped bool" */ == t
var b bool
var x, y float32
b = x < y