aboutsummaryrefslogtreecommitdiff
path: root/test/method3.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-01-16 16:12:14 -0800
committerRuss Cox <rsc@golang.org>2009-01-16 16:12:14 -0800
commitf48cbfdf5629526ed49534e55298a5a12216ea0c (patch)
tree7da3dc3316609873715c3e6e7871cb2bf57da081 /test/method3.go
parent9f4a27cbe6cc46a82bb9f3e0cb23dda10819be15 (diff)
downloadgo-f48cbfdf5629526ed49534e55298a5a12216ea0c.tar.gz
go-f48cbfdf5629526ed49534e55298a5a12216ea0c.zip
convert tests; nothing interesting.
R=r OCL=23012 CL=23014
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 491bcdad33..0b93af0e12 100644
--- a/test/method3.go
+++ b/test/method3.go
@@ -8,10 +8,10 @@
package main
-type T [] int
+export type T [] int
func (t T) Len() int { return len(t) }
-type I interface {
+export type I interface {
Len() int
}