summaryrefslogtreecommitdiff
path: root/test/nil.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-09-14 21:03:53 -0700
committerRuss Cox <rsc@golang.org>2009-09-14 21:03:53 -0700
commit298e8e3680bee2280342a991cf8d71cb3df8ef59 (patch)
tree026f00b9ffbf7b5b865b8a3c9749c1499e2b182a /test/nil.go
parent5a016d0a0cba8b515fbbb1bf209af446377c66b8 (diff)
downloadgo-298e8e3680bee2280342a991cf8d71cb3df8ef59.tar.gz
fix "declared and not used" in tests;
also template/template.go, missed last time. R=r DELTA=116 (61 added, 10 deleted, 45 changed) OCL=34620 CL=34622
Diffstat (limited to 'test/nil.go')
-rw-r--r--test/nil.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/nil.go b/test/nil.go
index 1aef54ba9..d35309615 100644
--- a/test/nil.go
+++ b/test/nil.go
@@ -32,4 +32,6 @@ func main() {
i = nil;
ta = make([]IN, 1);
ta[0] = nil;
+
+ _, _, _, _, _, _, _, _ = i, f, s, m, c, t, in, ta;
}