mirror of
https://github.com/golang/go
synced 2024-11-12 01:00:22 -07:00
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
This commit is contained in:
parent
98c208ee1d
commit
be0c25ee93
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user