aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue28079c.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/issue28079c.go')
-rw-r--r--test/fixedbugs/issue28079c.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/issue28079c.go b/test/fixedbugs/issue28079c.go
index bea1898304..dfac8d0155 100644
--- a/test/fixedbugs/issue28079c.go
+++ b/test/fixedbugs/issue28079c.go
@@ -11,5 +11,5 @@ package p
import "unsafe"
func f() {
- _ = complex(1<<uintptr(unsafe.Pointer(nil)), 0) // ERROR "invalid operation: .*shift of type float64.*"
+ _ = complex(1<<uintptr(unsafe.Pointer(nil)), 0) // ERROR "invalid operation: .*shift of type float64.*|non-integer type for left operand of shift"
}