summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug111.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/bug111.go')
-rw-r--r--test/fixedbugs/bug111.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/bug111.go b/test/fixedbugs/bug111.go
index 39da9b4dd..ee61cd830 100644
--- a/test/fixedbugs/bug111.go
+++ b/test/fixedbugs/bug111.go
@@ -22,7 +22,7 @@ func (s *Stucky) Me() Iffy {
}
func main() {
- s := new(Stucky);
+ s := new(*Stucky);
i := s.Me();
j := i.Me();
j.Me();