summaryrefslogtreecommitdiff
path: root/test/init.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/init.go')
-rw-r--r--test/init.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/init.go b/test/init.go
index b6c8c9706..74c2d5c26 100644
--- a/test/init.go
+++ b/test/init.go
@@ -12,7 +12,7 @@ func init() {
}
func main() {
- init() // ERROR "undefined: init"
+ init() // ERROR "undefined.*init"
runtime.init() // ERROR "unexported.*runtime\.init"
- var _ = init // ERROR "undefined: init"
+ var _ = init // ERROR "undefined.*init"
}