summaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue5172.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/issue5172.go')
-rw-r--r--test/fixedbugs/issue5172.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixedbugs/issue5172.go b/test/fixedbugs/issue5172.go
index 2dd542a5d..a6acbd3db 100644
--- a/test/fixedbugs/issue5172.go
+++ b/test/fixedbugs/issue5172.go
@@ -14,6 +14,6 @@ type foo struct {
func main() {
var f foo
- go f.bar()
- defer f.bar()
+ go f.bar() // GCCGO_ERROR "undefined"
+ defer f.bar() // GCCGO_ERROR "undefined"
}