summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug038.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/bug038.go')
-rw-r--r--test/fixedbugs/bug038.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/bug038.go b/test/fixedbugs/bug038.go
index 444a04252..7585376a3 100644
--- a/test/fixedbugs/bug038.go
+++ b/test/fixedbugs/bug038.go
@@ -9,5 +9,5 @@ package main
func main() {
var z [3]byte;
- z := new(*[3]byte); // BUG redeclaration
+ z := new([3]byte); // BUG redeclaration
}