diff options
Diffstat (limited to 'test/fixedbugs/bug058.go')
-rw-r--r-- | test/fixedbugs/bug058.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/fixedbugs/bug058.go b/test/fixedbugs/bug058.go index da47ae568..e2b4a241a 100644 --- a/test/fixedbugs/bug058.go +++ b/test/fixedbugs/bug058.go @@ -10,10 +10,10 @@ type Box struct {}; var m map[string] *Box; func main() { - m := make(map[string] *Box); - s := "foo"; - var x *Box = nil; - m[s] = x; + m := make(map[string] *Box); + s := "foo"; + var x *Box = nil; + m[s] = x; } /* |