summaryrefslogtreecommitdiff
path: root/test/ken/intervar.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
commit4ae0ed29a283c16d1c83ef704c4d75170c3801e6 (patch)
treef8305b165ee5ff41e9ef2b0f76e26f7ab3ece269 /test/ken/intervar.go
parent3986ef877ccd4db750b5050e318dff78f7e55d19 (diff)
downloadgolang-4ae0ed29a283c16d1c83ef704c4d75170c3801e6.tar.gz
delete export
TBR=r OCL=23121 CL=23127
Diffstat (limited to 'test/ken/intervar.go')
-rw-r--r--test/ken/intervar.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/ken/intervar.go b/test/ken/intervar.go
index 31e7d9869..1c3d65000 100644
--- a/test/ken/intervar.go
+++ b/test/ken/intervar.go
@@ -6,14 +6,14 @@
package main
-export type Iputs interface
+type Iputs interface
{
puts (s string);
}
// ---------
-export type Print struct
+type Print struct
{
whoami int;
put Iputs;
@@ -28,7 +28,7 @@ dop()
// ---------
-export type Bio struct
+type Bio struct
{
whoami int;
put Iputs;
@@ -43,7 +43,7 @@ puts(s string)
// ---------
-export type File struct
+type File struct
{
whoami int;
put Iputs;