commit | 839a68469b6f8bf40620a7977041e089bbd0eba3 | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Tue Jan 20 14:40:40 2009 -0800 |
committer | Russ Cox <rsc@golang.org> | Tue Jan 20 14:40:40 2009 -0800 |
tree | f8305b165ee5ff41e9ef2b0f76e26f7ab3ece269 | |
parent | 0183baaf449338f54727814d079c0254c18226f9 [diff] [blame] |
delete export TBR=r OCL=23121 CL=23127
diff --git a/test/fixedbugs/bug054.go b/test/fixedbugs/bug054.go index 35cfc92..0ed5d07 100644 --- a/test/fixedbugs/bug054.go +++ b/test/fixedbugs/bug054.go
@@ -6,10 +6,10 @@ package main -export type Element interface { +type Element interface { } -export type Vector struct { +type Vector struct { elem []Element; } @@ -17,7 +17,7 @@ return v.elem[i]; } -export type TStruct struct { +type TStruct struct { name string; fields *Vector; }