aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue27356.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/issue27356.go')
-rw-r--r--test/fixedbugs/issue27356.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixedbugs/issue27356.go b/test/fixedbugs/issue27356.go
index 42784876a5..c3e686df33 100644
--- a/test/fixedbugs/issue27356.go
+++ b/test/fixedbugs/issue27356.go
@@ -11,9 +11,9 @@ package p
var a = []int{1,2,3}
func _(len int) {
- _ = len(a) // ERROR "cannot call non-function"
+ _ = len(a) // ERROR "cannot call non-function|expected function"
}
var cap = false
-var _ = cap(a) // ERROR "cannot call non-function"
+var _ = cap(a) // ERROR "cannot call non-function|expected function"