summaryrefslogtreecommitdiff
path: root/test/nil.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-01-06 15:19:02 -0800
committerRuss Cox <rsc@golang.org>2009-01-06 15:19:02 -0800
commit19fede0efc349d1dce1b28f1be42e21b7276a44d (patch)
treef3f98baba1fdd5e0138a4875884aa85111308b3f /test/nil.go
parent3454572242c20d34d557038e2523de084f1e26e5 (diff)
downloadgo-19fede0efc349d1dce1b28f1be42e21b7276a44d.tar.gz
new new & make
R=r OCL=22166 CL=22166
Diffstat (limited to 'test/nil.go')
-rw-r--r--test/nil.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/nil.go b/test/nil.go
index 8cd8e57aa..1aef54ba9 100644
--- a/test/nil.go
+++ b/test/nil.go
@@ -30,6 +30,6 @@ func main() {
c = nil;
t = nil;
i = nil;
- ta = new([]IN, 1);
+ ta = make([]IN, 1);
ta[0] = nil;
}