aboutsummaryrefslogtreecommitdiff
path: root/test/235.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-01-20 14:40:40 -0800
committerRuss Cox <rsc@golang.org>2009-01-20 14:40:40 -0800
commit839a68469b6f8bf40620a7977041e089bbd0eba3 (patch)
treef8305b165ee5ff41e9ef2b0f76e26f7ab3ece269 /test/235.go
parent0183baaf449338f54727814d079c0254c18226f9 (diff)
downloadgo-839a68469b6f8bf40620a7977041e089bbd0eba3.tar.gz
go-839a68469b6f8bf40620a7977041e089bbd0eba3.zip
delete export
TBR=r OCL=23121 CL=23127
Diffstat (limited to 'test/235.go')
-rw-r--r--test/235.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/235.go b/test/235.go
index b0381f35bc..e24106dd00 100644
--- a/test/235.go
+++ b/test/235.go
@@ -6,9 +6,9 @@
package main
-export type T chan uint64;
+type T chan uint64;
-export func M(f uint64) (in, out T) {
+func M(f uint64) (in, out T) {
in = make(T, 100);
out = make(T, 100);
go func(in, out T, f uint64) {