aboutsummaryrefslogtreecommitdiff
path: root/test/method.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/method.go
parent0183baaf449338f54727814d079c0254c18226f9 (diff)
downloadgo-839a68469b6f8bf40620a7977041e089bbd0eba3.tar.gz
go-839a68469b6f8bf40620a7977041e089bbd0eba3.zip
delete export
TBR=r OCL=23121 CL=23127
Diffstat (limited to 'test/method.go')
-rw-r--r--test/method.go14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/method.go b/test/method.go
index f57c269074..6dba3d1781 100644
--- a/test/method.go
+++ b/test/method.go
@@ -6,12 +6,12 @@
package main
-export type S string
-export type S1 string
-export type I int
-export type I1 int
-export type T struct { x int }
-export type T1 T
+type S string
+type S1 string
+type I int
+type I1 int
+type T struct { x int }
+type T1 T
func (s S) val() int { return 1 }
func (s *S1) val() int { return 2 }
@@ -20,7 +20,7 @@ func (i *I1) val() int { return 4 }
//func (t T) val() int { return 7 }
func (t *T1) val() int { return 8 }
-export type Val interface {
+type Val interface {
val() int
}