From: Ian Lance Taylor Date: Mon, 6 Oct 2008 20:12:03 +0000 (-0700) Subject: Change old-style export declaration to new style export of X-Git-Tag: weekly.2009-11-06~3040 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=be0c25ee934dfdfaca13b390fd557d777c080548;p=gostls13.git Change old-style export declaration to new style export of type definition. R=r DELTA=3 (0 added, 2 deleted, 1 changed) OCL=16537 CL=16545 --- diff --git a/test/fixedbugs/bug026.go b/test/fixedbugs/bug026.go index 05925ef3f0..1d97c18ae5 100644 --- a/test/fixedbugs/bug026.go +++ b/test/fixedbugs/bug026.go @@ -6,12 +6,10 @@ package main -export Vector; - type Element interface { } -type Vector struct { +export type Vector struct { } func (v *Vector) Insert(i int, e Element) {