aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue22200.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/issue22200.go')
-rw-r--r--test/fixedbugs/issue22200.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/issue22200.go b/test/fixedbugs/issue22200.go
index 66b9538e03..37440d9bf0 100644
--- a/test/fixedbugs/issue22200.go
+++ b/test/fixedbugs/issue22200.go
@@ -12,7 +12,7 @@ func f1(x *[1<<30 - 1e6]byte) byte {
}
return 0
}
-func f2(x *[1<<30 + 1e6]byte) byte { // ERROR "stack frame too large"
+func f2(x *[1<<30 + 1e6]byte) byte { // GC_ERROR "stack frame too large"
for _, b := range *x {
return b
}