aboutsummaryrefslogtreecommitdiff
path: root/test/bigalg.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/bigalg.go
parent0183baaf449338f54727814d079c0254c18226f9 (diff)
downloadgo-839a68469b6f8bf40620a7977041e089bbd0eba3.tar.gz
go-839a68469b6f8bf40620a7977041e089bbd0eba3.zip
delete export
TBR=r OCL=23121 CL=23127
Diffstat (limited to 'test/bigalg.go')
-rw-r--r--test/bigalg.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/bigalg.go b/test/bigalg.go
index a77a9ec8d1..434eecf5d2 100644
--- a/test/bigalg.go
+++ b/test/bigalg.go
@@ -11,7 +11,7 @@ import (
"fmt";
)
-export type T struct {
+type T struct {
a float64;
b int64;
c string;
@@ -19,7 +19,7 @@ export type T struct {
}
var a = []int{ 1, 2, 3 }
-export var NIL []int;
+var NIL []int;
func arraycmptest() {
a1 := a;
@@ -34,7 +34,7 @@ func arraycmptest() {
}
}
-export func SameArray(a, b []int) bool {
+func SameArray(a, b []int) bool {
if len(a) != len(b) || cap(a) != cap(b) {
return false;
}
@@ -103,7 +103,7 @@ func chantest() {
}
}
-export type E struct { }
+type E struct { }
var e E
func interfacetest() {