summaryrefslogtreecommitdiff
path: root/test/235.go
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2009-05-16 23:12:28 -0700
committerIan Lance Taylor <iant@golang.org>2009-05-16 23:12:28 -0700
commit1bf69dfbb3225ba3b647a710520d9aa052833d6f (patch)
treee114c5dc77cb5059ea5fd29631ceb0522d9ab097 /test/235.go
parent26ecdbb574d3da4e8e8342d7755fb6592759a749 (diff)
downloadgo-1bf69dfbb3225ba3b647a710520d9aa052833d6f.tar.gz
Don't bother to import "os" just so that we can call
os.Exit(0) at the end of main. R=rsc DELTA=6 (0 added, 6 deleted, 0 changed) OCL=28967 CL=28969
Diffstat (limited to 'test/235.go')
-rw-r--r--test/235.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/235.go b/test/235.go
index b8621cc7e..fe3024c61 100644
--- a/test/235.go
+++ b/test/235.go
@@ -6,8 +6,6 @@
package main
-import "os"
-
type T chan uint64;
func M(f uint64) (in, out T) {
@@ -67,5 +65,4 @@ func main() {
x = min(xs);
if x != OUT[i] { panic("bad: ", x, " should be ", OUT[i]); }
}
- os.Exit(0);
}