From 976529fd654f2cdf6ca21afcdeddedeff7d9583a Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Fri, 16 Jan 2009 16:12:14 -0800 Subject: convert tests; nothing interesting. R=r OCL=23012 CL=23014 --- test/method.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'test/method.go') diff --git a/test/method.go b/test/method.go index 6dba3d178..f57c26907 100644 --- a/test/method.go +++ b/test/method.go @@ -6,12 +6,12 @@ package main -type S string -type S1 string -type I int -type I1 int -type T struct { x int } -type T1 T +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 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 } -type Val interface { +export type Val interface { val() int } -- cgit v1.2.1