summaryrefslogtreecommitdiff
path: root/test/method3.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
commit72da6a7ce95c427fa91aafa30e0ccd4f64c871db (patch)
treef8305b165ee5ff41e9ef2b0f76e26f7ab3ece269 /test/method3.go
parentb35f63b2763fbba37baefeddabdeb8d5c6132ea5 (diff)
downloadgo-72da6a7ce95c427fa91aafa30e0ccd4f64c871db.tar.gz
delete export
TBR=r OCL=23121 CL=23127
Diffstat (limited to 'test/method3.go')
-rw-r--r--test/method3.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/method3.go b/test/method3.go
index 0b93af0e1..491bcdad3 100644
--- a/test/method3.go
+++ b/test/method3.go
@@ -8,10 +8,10 @@
package main
-export type T [] int
+type T [] int
func (t T) Len() int { return len(t) }
-export type I interface {
+type I interface {
Len() int
}