summaryrefslogtreecommitdiff
path: root/test/complit.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/complit.go
parentb35f63b2763fbba37baefeddabdeb8d5c6132ea5 (diff)
downloadgo-72da6a7ce95c427fa91aafa30e0ccd4f64c871db.tar.gz
delete export
TBR=r OCL=23121 CL=23127
Diffstat (limited to 'test/complit.go')
-rw-r--r--test/complit.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/complit.go b/test/complit.go
index 55159be85..d9b948851 100644
--- a/test/complit.go
+++ b/test/complit.go
@@ -6,9 +6,9 @@
package main
-export type T struct { i int; f float; s string; next *T }
+type T struct { i int; f float; s string; next *T }
-export type R struct { num int }
+type R struct { num int }
func itor(a int) *R {
r := new(R);
@@ -22,8 +22,8 @@ func eq(a []*R) {
}
}
-export type P struct { a, b int };
-export func NewP(a, b int) *P {
+type P struct { a, b int };
+func NewP(a, b int) *P {
return &P{a, b}
}