summaryrefslogtreecommitdiff
path: root/test/235.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-01-16 16:12:14 -0800
committerRuss Cox <rsc@golang.org>2009-01-16 16:12:14 -0800
commit976529fd654f2cdf6ca21afcdeddedeff7d9583a (patch)
tree7da3dc3316609873715c3e6e7871cb2bf57da081 /test/235.go
parentdbfbdc283ac50455e365a40912828137e215ebde (diff)
downloadgo-976529fd654f2cdf6ca21afcdeddedeff7d9583a.tar.gz
convert tests; nothing interesting.
R=r OCL=23012 CL=23014
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 e24106dd0..b0381f35b 100644
--- a/test/235.go
+++ b/test/235.go
@@ -6,9 +6,9 @@
package main
-type T chan uint64;
+export type T chan uint64;
-func M(f uint64) (in, out T) {
+export func M(f uint64) (in, out T) {
in = make(T, 100);
out = make(T, 100);
go func(in, out T, f uint64) {