aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue28268.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/issue28268.go')
-rw-r--r--test/fixedbugs/issue28268.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixedbugs/issue28268.go b/test/fixedbugs/issue28268.go
index fdc6974d1c..59a4c57c67 100644
--- a/test/fixedbugs/issue28268.go
+++ b/test/fixedbugs/issue28268.go
@@ -16,8 +16,8 @@ type T struct {
type E struct{}
-func (T) b() {} // ERROR "field and method named b"
-func (*T) E() {} // ERROR "field and method named E"
+func (T) b() {} // ERROR "field and method named b|redeclares struct field name"
+func (*T) E() {} // ERROR "field and method named E|redeclares struct field name"
func _() {
var x T