Commit be0c25ee authored by Ian Lance Taylor's avatar Ian Lance Taylor

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
parent 98c208ee
...@@ -6,12 +6,10 @@ ...@@ -6,12 +6,10 @@
package main package main
export Vector;
type Element interface { type Element interface {
} }
type Vector struct { export type Vector struct {
} }
func (v *Vector) Insert(i int, e Element) { func (v *Vector) Insert(i int, e Element) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment