summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug412.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/bug412.go')
-rw-r--r--test/fixedbugs/bug412.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixedbugs/bug412.go b/test/fixedbugs/bug412.go
index 8dd0a5fcc..c7ddc0cac 100644
--- a/test/fixedbugs/bug412.go
+++ b/test/fixedbugs/bug412.go
@@ -7,8 +7,8 @@
package p
type t struct {
- x int // ERROR "duplicate field x|duplicate field name .x."
- x int
+ x int // GCCGO_ERROR "duplicate field name .x."
+ x int // GC_ERROR "duplicate field x"
}
func f(t *t) int {