summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug048.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/bug048.go')
-rw-r--r--test/fixedbugs/bug048.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/bug048.go b/test/fixedbugs/bug048.go
index fbfc12013..30a015cc2 100644
--- a/test/fixedbugs/bug048.go
+++ b/test/fixedbugs/bug048.go
@@ -8,5 +8,5 @@ package main
func main() {
type M map[int] int;
- m1 := M{7 : 8};
+ m1 := M(7 : 8);
}