summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug135.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
commit1a3198907bf18ac961762024cf2a27581e6be6c3 (patch)
tree026f00b9ffbf7b5b865b8a3c9749c1499e2b182a /test/fixedbugs/bug135.go
parent59914723df0b120961477040673c21bc88378f92 (diff)
downloadgo-git-1a3198907bf18ac961762024cf2a27581e6be6c3.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/fixedbugs/bug135.go')
-rw-r--r--test/fixedbugs/bug135.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/fixedbugs/bug135.go b/test/fixedbugs/bug135.go
index 252aa87e66..470135ed43 100644
--- a/test/fixedbugs/bug135.go
+++ b/test/fixedbugs/bug135.go
@@ -15,4 +15,5 @@ func main() {
t := new(T);
var i interface {};
f, ok := i.(Foo);
+ _, _, _ = t, f, ok;
}